summaryrefslogtreecommitdiff
path: root/src/lib/font_data.cc
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2020-12-20 23:20:55 +0100
committerCarl Hetherington <cth@carlh.net>2020-12-22 02:37:53 +0100
commitbf4446523dd891049cabf1bcd68d20def57bc731 (patch)
treef9adae972b2cee2955b28b63dbd672436212ad8e /src/lib/font_data.cc
parent191b9aece985643210dc6b2352b390cdfc386f4d (diff)
Add FontData class.
Diffstat (limited to 'src/lib/font_data.cc')
-rw-r--r--src/lib/font_data.cc56
1 files changed, 56 insertions, 0 deletions
diff --git a/src/lib/font_data.cc b/src/lib/font_data.cc
new file mode 100644
index 000000000..83b6562f0
--- /dev/null
+++ b/src/lib/font_data.cc
@@ -0,0 +1,56 @@
+/*
+ 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 "font.h"
+#include "font_data.h"
+#include "dcpomatic_assert.h"
+#include <boost/shared_ptr.hpp>
+
+
+using boost::shared_ptr;
+
+
+dcpomatic::FontData::FontData (shared_ptr<const Font> font)
+ : id (font->id())
+{
+ if (font->file()) {
+ data = dcp::ArrayData(font->file().get());
+ }
+}
+
+
+bool
+dcpomatic::operator== (FontData const& a, FontData const& b)
+{
+ if (a.id != b.id) {
+ return false;
+ }
+
+ return a.data == b.data;
+}
+
+
+bool
+dcpomatic::operator!= (FontData const& a, FontData const& b)
+{
+ return !(a == b);
+}
+