4cb265351a19c16c9cb6da69874f89be5d9ea527
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 const std::string to_str(uint64_t val) const;
19 private:
20 Property(Card& card, uint32_t id);
21 ~Property();
23 PropertyPriv* m_priv;
24 std::string m_name;
25 };
26 }