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/asset.h | |
| parent | 863ff8cced5b7d1d36ad6761fa1f6e2dbeafcad6 (diff) | |
Adapt to new libcxml ARI. Compiles but does not pass tests.1.0-new-cxml
Diffstat (limited to 'src/asset.h')
| -rw-r--r-- | src/asset.h | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/src/asset.h b/src/asset.h index 86d5daf5..19aa2996 100644 --- a/src/asset.h +++ b/src/asset.h @@ -26,14 +26,11 @@ #include "object.h" #include "types.h" +#include <libcxml/cxml.h> #include <boost/filesystem.hpp> #include <boost/function.hpp> #include <boost/bind.hpp> -namespace xmlpp { - class Node; -} - namespace dcp { /** @class Asset @@ -58,13 +55,13 @@ public: /** Write details of the asset to a ASSETMAP. * @param node Parent node. */ - void write_to_assetmap (xmlpp::Node* node, boost::filesystem::path root) const; + void write_to_assetmap (cxml::NodePtr node, boost::filesystem::path root) const; /** Write details of the asset to a PKL AssetList node. * @param node Parent node. * @param standard Standard to use. */ - void write_to_pkl (xmlpp::Node* node, Standard standard) const; + void write_to_pkl (cxml::NodePtr node, Standard standard) const; boost::filesystem::path file () const { return _file; |
