summaryrefslogtreecommitdiff
path: root/src/lib/cinema.h
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2014-05-19 11:34:01 +0100
committerCarl Hetherington <cth@carlh.net>2014-05-19 11:34:01 +0100
commitbb0a36c3a6bea9cd1ebdde7b8a3a04765e317569 (patch)
treefe31842bc2fcb511f3f6daf02c78575b4eabaec5 /src/lib/cinema.h
parent308488324dbc4d8b709d3fb1dc9fee0479346c21 (diff)
Use cxml::ConstNodePtr.
Diffstat (limited to 'src/lib/cinema.h')
-rw-r--r--src/lib/cinema.h11
1 files changed, 4 insertions, 7 deletions
diff --git a/src/lib/cinema.h b/src/lib/cinema.h
index 2e7660860..74357f65d 100644
--- a/src/lib/cinema.h
+++ b/src/lib/cinema.h
@@ -23,13 +23,10 @@
#include <boost/enable_shared_from_this.hpp>
#include <dcp/certificates.h>
+#include <libcxml/cxml.h>
class Cinema;
-namespace cxml {
- class Node;
-}
-
/** @class Screen
* @brief A representation of a Screen for KDM generation.
*
@@ -44,7 +41,7 @@ public:
, certificate (cert)
{}
- Screen (boost::shared_ptr<const cxml::Node>);
+ Screen (cxml::ConstNodePtr);
void as_xml (xmlpp::Element *) const;
@@ -67,9 +64,9 @@ public:
, email (e)
{}
- Cinema (boost::shared_ptr<const cxml::Node>);
+ Cinema (cxml::ConstNodePtr);
- void read_screens (boost::shared_ptr<const cxml::Node>);
+ void read_screens (cxml::ConstNodePtr);
void as_xml (xmlpp::Element *) const;