summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2015-01-04 01:13:55 +0000
committerCarl Hetherington <cth@carlh.net>2015-01-04 01:13:55 +0000
commit3a546df5dacafb99958d53c9738e135d4f0deb2b (patch)
tree08cba56f41c5db6cdfde8096d0c8cfe84de8218c /src
parent695506b51231548d76d9c8b5848671faab4a27b4 (diff)
Missing files.
Diffstat (limited to 'src')
-rw-r--r--src/load_font.h35
1 files changed, 35 insertions, 0 deletions
diff --git a/src/load_font.h b/src/load_font.h
new file mode 100644
index 00000000..15906ef6
--- /dev/null
+++ b/src/load_font.h
@@ -0,0 +1,35 @@
+/*
+ Copyright (C) 2012-2015 Carl Hetherington <cth@carlh.net>
+
+ This program 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.
+
+ This program 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 this program; if not, write to the Free Software
+ Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
+
+*/
+
+#include <string>
+
+namespace dcp {
+
+class LoadFont
+{
+public:
+ LoadFont () {}
+ LoadFont (std::string id_)
+ : id (id_)
+ {}
+
+ std::string id;
+};
+
+}