Add dcpomatic2_map tool (#2445).
[dcpomatic.git] / src / lib / font.h
index b9e90f65e07e0052df4d5f4afa7da5f52c1c7e03..12a14aba4e74086dee82c93d3a6464dd6159dee7 100644 (file)
@@ -54,6 +54,9 @@ public:
                _content.data = data;
        }
 
+       Font(Font const& other);
+       Font& operator=(Font const& other);
+
        void as_xml (xmlpp::Node* node);
 
        std::string id () const {
@@ -85,6 +88,10 @@ public:
                boost::optional<boost::filesystem::path> file;
        };
 
+       Content content() const {
+               return _content;
+       }
+
        boost::signals2::signal<void()> Changed;
 
 private: