Remove unused code.
[libdcp.git] / src / font.cc
index 5a568a63e3fabcf679c4a47447975deea2707209..51bd866e435cbc73dc27fe8b4637a27564bf2a15 100644 (file)
@@ -17,6 +17,8 @@
 
 */
 
+#include "types.h"
+#include "raw_convert.h"
 #include "font.h"
 #include "xml.h"
 #include "text.h"
@@ -28,7 +30,7 @@ using boost::shared_ptr;
 using boost::optional;
 using namespace dcp;
 
-Font::Font (shared_ptr<const cxml::Node> node)
+Font::Font (boost::shared_ptr<const cxml::Node> node)
 {
        text = node->content ();
        
@@ -52,7 +54,7 @@ Font::Font (shared_ptr<const cxml::Node> node)
        text_nodes = type_children<Text> (node, "Text");
 }
 
-Font::Font (list<shared_ptr<Font> > const & font_nodes)
+Font::Font (std::list<boost::shared_ptr<Font> > const & font_nodes)
        : size (0)
        , italic (false)
        , color ("FFFFFFFF")