summaryrefslogtreecommitdiff
path: root/src/interop_load_font_node.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/interop_load_font_node.h')
-rw-r--r--src/interop_load_font_node.h14
1 files changed, 12 insertions, 2 deletions
diff --git a/src/interop_load_font_node.h b/src/interop_load_font_node.h
index 17ce1893..6fe3fb1c 100644
--- a/src/interop_load_font_node.h
+++ b/src/interop_load_font_node.h
@@ -1,5 +1,5 @@
/*
- Copyright (C) 2012-2014 Carl Hetherington <cth@carlh.net>
+ Copyright (C) 2012-2021 Carl Hetherington <cth@carlh.net>
This file is part of libdcp.
@@ -31,13 +31,21 @@
files in the program, then also delete it here.
*/
+
+/** @file src/interop_load_font_node.h
+ * @brief InteropLoadFontNode class
+ */
+
+
#include "load_font_node.h"
#include <libcxml/cxml.h>
-#include <memory>
#include <boost/optional.hpp>
+#include <memory>
+
namespace dcp {
+
class InteropLoadFontNode : public LoadFontNode
{
public:
@@ -48,7 +56,9 @@ public:
std::string uri;
};
+
bool operator== (InteropLoadFontNode const & a, InteropLoadFontNode const & b);
bool operator!= (InteropLoadFontNode const & a, InteropLoadFontNode const & b);
+
}