X-Git-Url: https://main.carlh.net/gitweb/?a=blobdiff_plain;f=src%2Flib%2Ffont.h;h=5876bf8a46052cbbbd75ad2adb941a581b2c7029;hb=7c730205e50014347bd96ab9735346d0b5922798;hp=cb18e4798b6e7b29ef1863ddc8216a6c759431e1;hpb=c6871fe8617b3de03662b7630355059393bf8043;p=dcpomatic.git diff --git a/src/lib/font.h b/src/lib/font.h index cb18e4798..5876bf8a4 100644 --- a/src/lib/font.h +++ b/src/lib/font.h @@ -21,13 +21,14 @@ #ifndef DCPOMATIC_FONT_H #define DCPOMATIC_FONT_H -#include "font_files.h" #include #include #include #include #include +namespace dcpomatic { + class Font { public: @@ -42,21 +43,12 @@ public: return _id; } - boost::optional file (FontFiles::Variant variant) const { - return _files.get (variant); + boost::optional file () const { + return _file; } - void set_file (FontFiles::Variant variant, boost::filesystem::path file) { - _files.set (variant, file); - Changed (); - } - - FontFiles files () const { - return _files; - } - - void set_files (FontFiles files) { - _files = files; + void set_file (boost::filesystem::path file) { + _file = file; Changed (); } @@ -65,10 +57,12 @@ public: private: /** Font ID, used to describe it in the subtitle content */ std::string _id; - FontFiles _files; + boost::optional _file; }; bool operator!= (Font const & a, Font const & b); bool operator== (Font const & a, Font const & b); +} + #endif