diff options
| author | Carl Hetherington <cth@carlh.net> | 2013-10-19 11:38:36 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2013-10-19 11:38:36 +0100 |
| commit | d86d3f66f88623bea44033db4855206dd3a5e830 (patch) | |
| tree | 6e94746c03a46ebf6b6d3fb4ff4bebf032bb5060 /src/asset.h | |
| parent | 58645afe4a843e69ff1c72ffbd772746d8edbef1 (diff) | |
Some more boost::filesystem::path.
Diffstat (limited to 'src/asset.h')
| -rw-r--r-- | src/asset.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/asset.h b/src/asset.h index ec1385e6..34176d0d 100644 --- a/src/asset.h +++ b/src/asset.h @@ -53,7 +53,7 @@ public: * @param directory Directory where our XML or MXF file is. * @param file_name Name of our file within directory, or empty to make one up based on UUID. */ - Asset (boost::filesystem::path directory, std::string file_name = ""); + Asset (boost::filesystem::path directory, boost::filesystem::path file_name = ""); virtual ~Asset() {} @@ -136,7 +136,7 @@ protected: /** Directory that our MXF or XML file is in */ boost::filesystem::path _directory; /** Name of our MXF or XML file */ - std::string _file_name; + boost::filesystem::path _file_name; /** Our UUID */ std::string _uuid; /** The edit rate; this is normally equal to the number of video frames per second */ |
