diff options
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; |
