X-Git-Url: https://main.carlh.net/gitweb/?p=dcpomatic.git;a=blobdiff_plain;f=src%2Flib%2Ffont.h;h=ed3ecc38f3075498d2051545a38df5ab4c2382fb;hp=b2ae86daff328d208a1e5c59d4f6b2ae83fe4b2f;hb=da44da6f31f97d39ca91c35955e573e76371f2c2;hpb=f77ec143719c86ddbf098bff6d19fe2a159b8c3e diff --git a/src/lib/font.h b/src/lib/font.h index b2ae86daf..ed3ecc38f 100644 --- a/src/lib/font.h +++ b/src/lib/font.h @@ -1,5 +1,5 @@ /* - Copyright (C) 2014-2015 Carl Hetherington + Copyright (C) 2014-2021 Carl Hetherington This file is part of DCP-o-matic. @@ -18,15 +18,21 @@ */ + #ifndef DCPOMATIC_FONT_H #define DCPOMATIC_FONT_H + #include #include #include #include #include + +namespace dcpomatic { + + class Font { public: @@ -58,7 +64,11 @@ private: boost::optional _file; }; + bool operator!= (Font const & a, Font const & b); bool operator== (Font const & a, Font const & b); + +} + #endif