From 9916712a62169606d845510028a3ea6f84bd442f Mon Sep 17 00:00:00 2001 From: Tomi Valkeinen Date: Sat, 11 Jun 2016 21:46:24 +0300 Subject: kms++: organize into subdirs --- kms++/property.h | 44 -------------------------------------------- 1 file changed, 44 deletions(-) delete mode 100644 kms++/property.h (limited to 'kms++/property.h') diff --git a/kms++/property.h b/kms++/property.h deleted file mode 100644 index b9097ff..0000000 --- a/kms++/property.h +++ /dev/null @@ -1,44 +0,0 @@ -#pragma once - -#include "drmobject.h" -#include -#include - -namespace kms -{ - -struct PropertyPriv; - -enum class PropertyType -{ - Range, - Enum, - Blob, - Bitmask, - Object, - SignedRange, -}; - -class Property : public DrmObject -{ - friend class Card; -public: - const std::string& name() const; - - bool is_immutable() const; - bool is_pending() const; - - PropertyType type() const { return m_type; } - std::map get_enums() const; - std::vector get_values() const; - std::vector get_blob_ids() const; -private: - Property(Card& card, uint32_t id); - ~Property(); - - PropertyType m_type; - - PropertyPriv* m_priv; - std::string m_name; -}; -} -- cgit v1.2.3