summaryrefslogtreecommitdiff
path: root/libkms++/property.h
diff options
context:
space:
mode:
Diffstat (limited to 'libkms++/property.h')
-rw-r--r--libkms++/property.h23
1 files changed, 23 insertions, 0 deletions
diff --git a/libkms++/property.h b/libkms++/property.h
new file mode 100644
index 0000000..d5306d0
--- /dev/null
+++ b/libkms++/property.h
@@ -0,0 +1,23 @@
+#pragma once
+
+#include "drmobject.h"
+
+namespace kms
+{
+
+struct PropertyPriv;
+
+class Property : public DrmObject
+{
+public:
+ Property(Card& card, uint32_t id);
+ ~Property();
+
+ void print_short() const;
+
+ const char *name() const;
+
+private:
+ PropertyPriv* m_priv;
+};
+}