summaryrefslogtreecommitdiff
path: root/kms++/drmobject.h
diff options
context:
space:
mode:
authorTomi Valkeinen <tomi.valkeinen@ti.com>2016-06-11 21:46:24 +0300
committerTomi Valkeinen <tomi.valkeinen@ti.com>2016-06-11 21:46:24 +0300
commit9916712a62169606d845510028a3ea6f84bd442f (patch)
treeaca4e1bec39500812111c43a8ecee862edae0002 /kms++/drmobject.h
parent736b295100ce441e800457bcbd08cb36db543ff2 (diff)
kms++: organize into subdirs
Diffstat (limited to 'kms++/drmobject.h')
-rw-r--r--kms++/drmobject.h40
1 files changed, 0 insertions, 40 deletions
diff --git a/kms++/drmobject.h b/kms++/drmobject.h
deleted file mode 100644
index a939aa7..0000000
--- a/kms++/drmobject.h
+++ /dev/null
@@ -1,40 +0,0 @@
-#pragma once
-
-#include <map>
-
-#include "decls.h"
-
-namespace kms
-{
-
-class DrmObject
-{
- friend class Card;
-public:
- DrmObject(const DrmObject& other) = delete;
- DrmObject& operator=(const DrmObject& other) = delete;
-
- uint32_t id() const { return m_id; }
- Card& card() const { return m_card; }
-
- uint32_t object_type() const { return m_object_type; }
- uint32_t idx() const { return m_idx; }
-
-protected:
- DrmObject(Card& card, uint32_t object_type);
- DrmObject(Card& card, uint32_t id, uint32_t object_type, uint32_t idx = 0);
-
- virtual ~DrmObject();
-
- virtual void setup() { }
-
- virtual void set_id(uint32_t id);
-
-private:
- Card& m_card;
-
- uint32_t m_id;
- uint32_t m_object_type;
- uint32_t m_idx;
-};
-}