diff options
| author | Carl Hetherington <cth@carlh.net> | 2014-10-10 16:07:44 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2014-10-10 16:07:44 +0100 |
| commit | e30c30ef7bbd8413ac0c8390abe574d5dd1cf5f7 (patch) | |
| tree | f67b4a9364264d433535dbc24a19b6df6ac59049 /src/reel.h | |
| parent | 863ff8cced5b7d1d36ad6761fa1f6e2dbeafcad6 (diff) | |
Adapt to new libcxml ARI. Compiles but does not pass tests.1.0-new-cxml
Diffstat (limited to 'src/reel.h')
| -rw-r--r-- | src/reel.h | 10 |
1 files changed, 3 insertions, 7 deletions
@@ -23,15 +23,11 @@ #include "key.h" #include "types.h" #include "ref.h" -#include <libxml++/libxml++.h> +#include <libcxml/cxml.h> #include <boost/shared_ptr.hpp> #include <boost/function.hpp> #include <list> -namespace cxml { - class Node; -} - namespace dcp { class DecryptedKDM; @@ -57,7 +53,7 @@ public: , _main_subtitle (subtitle) {} - Reel (boost::shared_ptr<const cxml::Node>); + Reel (cxml::ConstNodePtr); boost::shared_ptr<ReelPictureAsset> main_picture () const { return _main_picture; @@ -73,7 +69,7 @@ public: void add (boost::shared_ptr<ReelAsset> asset); - void write_to_cpl (xmlpp::Element* node, Standard standard) const; + void write_to_cpl (cxml::NodePtr node, Standard standard) const; bool encrypted () const; |
