diff options
Diffstat (limited to 'src/lib/font.h')
| -rw-r--r-- | src/lib/font.h | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/src/lib/font.h b/src/lib/font.h index 5876bf8a4..ed3ecc38f 100644 --- a/src/lib/font.h +++ b/src/lib/font.h @@ -1,5 +1,5 @@ /* - Copyright (C) 2014-2015 Carl Hetherington <cth@carlh.net> + Copyright (C) 2014-2021 Carl Hetherington <cth@carlh.net> This file is part of DCP-o-matic. @@ -18,17 +18,21 @@ */ + #ifndef DCPOMATIC_FONT_H #define DCPOMATIC_FONT_H + #include <libcxml/cxml.h> #include <boost/optional.hpp> #include <boost/signals2.hpp> #include <boost/filesystem.hpp> #include <string> + namespace dcpomatic { + class Font { public: @@ -60,9 +64,11 @@ private: boost::optional<boost::filesystem::path> _file; }; + bool operator!= (Font const & a, Font const & b); bool operator== (Font const & a, Font const & b); + } #endif |
