diff options
| author | Carl Hetherington <cth@carlh.net> | 2013-01-25 01:21:51 +0000 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2013-01-25 01:21:51 +0000 |
| commit | 103c20d48c22f0c604e402de41bce7336ef9b386 (patch) | |
| tree | 67d9483b0a1133cc115765a84d2265290ade9447 /src/asset.h | |
| parent | dcdd532760f8970505b7fa5c83f86fbe39a73148 (diff) | |
Allow changing of MXF directory / filename; un-expose ASDCP frame buffer classes in the API.
Diffstat (limited to 'src/asset.h')
| -rw-r--r-- | src/asset.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/asset.h b/src/asset.h index 3ba0a0cf..436e8b41 100644 --- a/src/asset.h +++ b/src/asset.h @@ -71,6 +71,14 @@ public: } boost::filesystem::path path () const; + + void set_directory (std::string d) { + _directory = d; + } + + void set_file_name (std::string f) { + _file_name = f; + } virtual bool equals (boost::shared_ptr<const Asset> other, EqualityOptions opt, std::list<std::string>& notes) const = 0; |
