From 009828beac9bfe9c36d336a4de0d297f90aece52 Mon Sep 17 00:00:00 2001 From: Tomi Valkeinen Date: Mon, 28 Sep 2015 01:13:34 +0300 Subject: Initial version --- libkms++/property.h | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 libkms++/property.h (limited to 'libkms++/property.h') 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; +}; +} -- cgit v1.2.3