diff options
| author | Carl Hetherington <cth@carlh.net> | 2023-01-01 21:14:18 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2023-01-07 22:45:45 +0100 |
| commit | 356ca40b85676e9e0f07f24d0752b30f2d0e8565 (patch) | |
| tree | 547a729653d65d895ec0ca6a39c0362ace17cd3e | |
| parent | 67dece222b733ab50b0d3965da55eea4789ea4f9 (diff) | |
Add DCP::asset_map().
| -rw-r--r-- | src/dcp.h | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -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: |
