ffab8d0cd05c911d22b1e1ab82c24e7b3a62ddf6
1 #pragma once
3 #include "drmobject.h"
5 namespace kms
6 {
8 struct PropertyPriv;
10 class Property : public DrmObject
11 {
12 friend class Card;
13 public:
14 void print_short() const;
16 const std::string& name() const;
18 private:
19 Property(Card& card, uint32_t id);
20 ~Property();
22 PropertyPriv* m_priv;
23 std::string m_name;
24 };
25 }