summaryrefslogtreecommitdiff
path: root/src/load_font.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/load_font.h')
-rw-r--r--src/load_font.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/load_font.h b/src/load_font.h
index 6319b1de..6d52a509 100644
--- a/src/load_font.h
+++ b/src/load_font.h
@@ -18,6 +18,7 @@
*/
#include <boost/shared_ptr.hpp>
+#include <boost/optional.hpp>
namespace cxml {
class Node;
@@ -32,7 +33,7 @@ public:
LoadFont (boost::shared_ptr<const cxml::Node> node);
std::string id;
- std::string uri;
+ boost::optional<std::string> uri;
};
}