summaryrefslogtreecommitdiff
path: root/src/lib/content.h
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2013-04-02 21:20:35 +0100
committerCarl Hetherington <cth@carlh.net>2013-04-02 21:20:35 +0100
commit956da4b106e14c49b179176acf6484c479c21094 (patch)
tree0fee47183fd58dcf90ef059171c2e73d9916bb89 /src/lib/content.h
parent20cd8bdecb9667f7d838dbb7210f3e1a4765c662 (diff)
Various fixes.
Diffstat (limited to 'src/lib/content.h')
-rw-r--r--src/lib/content.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/lib/content.h b/src/lib/content.h
index 87ef46581..3f348ca91 100644
--- a/src/lib/content.h
+++ b/src/lib/content.h
@@ -37,10 +37,12 @@ class Content
public:
Content (boost::filesystem::path);
Content (boost::shared_ptr<const cxml::Node>);
+ Content (Content const &);
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;
+ virtual boost::shared_ptr<Content> clone () const = 0;
boost::filesystem::path file () const {
boost::mutex::scoped_lock lm (_mutex);