summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2023-01-01 21:14:18 +0100
committerCarl Hetherington <cth@carlh.net>2023-01-07 22:45:45 +0100
commit356ca40b85676e9e0f07f24d0752b30f2d0e8565 (patch)
tree547a729653d65d895ec0ca6a39c0362ace17cd3e
parent67dece222b733ab50b0d3965da55eea4789ea4f9 (diff)
Add DCP::asset_map().
-rw-r--r--src/dcp.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/dcp.h b/src/dcp.h
index 9811b60d..941df67c 100644
--- a/src/dcp.h
+++ b/src/dcp.h
@@ -190,6 +190,10 @@ public:
return _asset_map->path();
}
+ boost::optional<AssetMap> asset_map() const {
+ return _asset_map;
+ }
+
static std::vector<boost::filesystem::path> directories_from_files (std::vector<boost::filesystem::path> files);
private: