diff options
| author | Carl Hetherington <cth@carlh.net> | 2015-04-16 23:10:28 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2015-04-16 23:10:28 +0100 |
| commit | 769c71b5c3e050ccfc1c13771d24328fbf76a495 (patch) | |
| tree | f75d5c5c953884395b2e59358e2c7faff5d5ba4b /src/lib/isdcf_metadata.cc | |
| parent | 91bd51ff82e99113860570b519459303802bd98f (diff) | |
Add our own raw_convert that uses SafeStringStream.
Diffstat (limited to 'src/lib/isdcf_metadata.cc')
| -rw-r--r-- | src/lib/isdcf_metadata.cc | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/src/lib/isdcf_metadata.cc b/src/lib/isdcf_metadata.cc index e9d2e313e..a9d7d939e 100644 --- a/src/lib/isdcf_metadata.cc +++ b/src/lib/isdcf_metadata.cc @@ -17,16 +17,15 @@ */ -#include <iostream> -#include <libcxml/cxml.h> -#include <dcp/raw_convert.h> #include "isdcf_metadata.h" +#include "raw_convert.h" +#include <libcxml/cxml.h> +#include <iostream> #include "i18n.h" using std::string; using boost::shared_ptr; -using dcp::raw_convert; ISDCFMetadata::ISDCFMetadata (cxml::ConstNodePtr node) : content_version (node->number_child<int> ("ContentVersion")) |
