summaryrefslogtreecommitdiff
path: root/src/lib/content.h
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2013-04-01 02:25:02 +0100
committerCarl Hetherington <cth@carlh.net>2013-04-01 02:25:02 +0100
commitb468ccabdb13fca86ae8a324239d83490ef5832e (patch)
tree816332e6d3437b3924c1fdf6ada7d61965136337 /src/lib/content.h
parent640c53f0a5f178a894ff2718bf6d74e9e977eb80 (diff)
XML metadata and some other bits.
Diffstat (limited to 'src/lib/content.h')
-rw-r--r--src/lib/content.h7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/lib/content.h b/src/lib/content.h
index 25c097424..3a94d2297 100644
--- a/src/lib/content.h
+++ b/src/lib/content.h
@@ -4,6 +4,11 @@
#include <boost/filesystem.hpp>
#include <boost/signals2.hpp>
#include <boost/thread/mutex.hpp>
+#include <libxml++/libxml++.h>
+
+namespace cxml {
+ class Node;
+}
class Job;
class Film;
@@ -12,9 +17,11 @@ class Content
{
public:
Content (boost::filesystem::path);
+ Content (boost::shared_ptr<const cxml::Node>);
virtual void examine (boost::shared_ptr<Film>, boost::shared_ptr<Job>, bool);
virtual std::string summary () const = 0;
+ virtual void as_xml (xmlpp::Node *) const;
boost::filesystem::path file () const {
boost::mutex::scoped_lock lm (_mutex);