diff options
| author | Carl Hetherington <cth@carlh.net> | 2012-08-12 23:26:10 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2012-08-12 23:26:10 +0100 |
| commit | a1a33941351365cc371f468c6c9c8f0cf8ca32d2 (patch) | |
| tree | 07291db383d88e512b09450b26199b046028dff2 /src/dcp.h | |
| parent | 916247147468aee47354ebb3088f47b8a56fcccf (diff) | |
Try to be recursive when examining DCP directories.
Diffstat (limited to 'src/dcp.h')
| -rw-r--r-- | src/dcp.h | 8 |
1 files changed, 8 insertions, 0 deletions
@@ -145,6 +145,14 @@ private: */ void write_assetmap (std::string cpl_uuid, int cpl_length, std::string pkl_uuid, int pkl_length) const; + struct Files { + std::string cpl; + std::string pkl; + std::string asset_map; + }; + + void scan (Files& files, std::string directory) const; + /** the directory that we are writing to */ std::string _directory; /** the name of the DCP */ |
