summaryrefslogtreecommitdiff
path: root/src/lib/dkdm_wrapper.h
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2017-05-24 11:58:40 +0100
committerCarl Hetherington <cth@carlh.net>2017-05-24 12:23:59 +0100
commitba049fdab4a47023d6d5ee8b5ff9bbb710afbabb (patch)
treebaa7dde1cb12056a787174f9900e08d260d63e8a /src/lib/dkdm_wrapper.h
parentaaf1d809a0ebbc2eb7dcd9ea7146cfe7bb4702f1 (diff)
Support basic drag-and-drop of DKDMs.
Diffstat (limited to 'src/lib/dkdm_wrapper.h')
-rw-r--r--src/lib/dkdm_wrapper.h16
1 files changed, 15 insertions, 1 deletions
diff --git a/src/lib/dkdm_wrapper.h b/src/lib/dkdm_wrapper.h
index b877722d9..d3ee2a095 100644
--- a/src/lib/dkdm_wrapper.h
+++ b/src/lib/dkdm_wrapper.h
@@ -20,18 +20,32 @@
#include <dcp/encrypted_kdm.h>
#include <libcxml/cxml.h>
+#include <boost/enable_shared_from_this.hpp>
namespace xmlpp {
class Element;
}
-class DKDMBase
+class DKDMGroup;
+
+class DKDMBase : public boost::enable_shared_from_this<DKDMBase>
{
public:
virtual std::string name () const = 0;
virtual void as_xml (xmlpp::Element *) const = 0;
static boost::shared_ptr<DKDMBase> read (cxml::ConstNodePtr node);
+
+ boost::shared_ptr<DKDMGroup> parent () const {
+ return _parent;
+ }
+
+ void set_parent (boost::shared_ptr<DKDMGroup> parent) {
+ _parent = parent;
+ }
+
+private:
+ boost::shared_ptr<DKDMGroup> _parent;
};
class DKDM : public DKDMBase