summaryrefslogtreecommitdiff
path: root/src/asset.cc
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2015-06-24 15:05:19 +0100
committerCarl Hetherington <cth@carlh.net>2015-06-24 15:05:19 +0100
commit81312913ad26aaee12eeabd3f27a537806c97049 (patch)
tree8a58899a4df44bc88f85d52707152934cc0ccb51 /src/asset.cc
parent094117316524f12fc82adbdf721778eed04e66f6 (diff)
Fix various SNAFUs with Font ID handling.
Diffstat (limited to 'src/asset.cc')
-rw-r--r--src/asset.cc7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/asset.cc b/src/asset.cc
index 3d397831..6a15f216 100644
--- a/src/asset.cc
+++ b/src/asset.cc
@@ -49,6 +49,13 @@ Asset::Asset (boost::filesystem::path file)
}
+Asset::Asset (string id, boost::filesystem::path file)
+ : Object (id)
+ , _file (file)
+{
+
+}
+
void
Asset::write_to_pkl (xmlpp::Node* node, Standard standard) const
{