diff options
| author | Carl Hetherington <cth@carlh.net> | 2020-12-20 23:20:55 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2020-12-22 02:37:53 +0100 |
| commit | bf4446523dd891049cabf1bcd68d20def57bc731 (patch) | |
| tree | f9adae972b2cee2955b28b63dbd672436212ad8e /src/lib/font_data.h | |
| parent | 191b9aece985643210dc6b2352b390cdfc386f4d (diff) | |
Add FontData class.
Diffstat (limited to 'src/lib/font_data.h')
| -rw-r--r-- | src/lib/font_data.h | 53 |
1 files changed, 53 insertions, 0 deletions
diff --git a/src/lib/font_data.h b/src/lib/font_data.h new file mode 100644 index 000000000..90543bec9 --- /dev/null +++ b/src/lib/font_data.h @@ -0,0 +1,53 @@ +/* + Copyright (C) 2020 Carl Hetherington <cth@carlh.net> + + This file is part of DCP-o-matic. + + DCP-o-matic is free software; you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation; either version 2 of the License, or + (at your option) any later version. + + DCP-o-matic is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with DCP-o-matic. If not, see <http://www.gnu.org/licenses/>. + +*/ + + +#include <dcp/array_data.h> +#include <boost/optional.hpp> +#include <string> + + +namespace dcpomatic { + + +class Font; + + +/** A font (TTF) file held as a block of data */ +class FontData +{ +public: + FontData (boost::shared_ptr<const Font> font); + + FontData (std::string id_, dcp::ArrayData data_) + : id(id_) + , data(data_) + {} + + std::string id; + boost::optional<dcp::ArrayData> data; +}; + + +extern bool operator== (FontData const& a, FontData const& b); +extern bool operator!= (FontData const& a, FontData const& b); + + +} |
