diff options
| author | Carl Hetherington <cth@carlh.net> | 2022-04-16 22:20:54 +0200 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2022-05-05 23:38:41 +0200 |
| commit | 8a8c977c12fc65f1f50ea05099387e0fc8840e7d (patch) | |
| tree | 2d2c8663652939d643779d1ab1c18a12813fcbd2 /src/lib/file_group.h | |
| parent | efe153ab23b54cdbf28c653f2ccb0f25ca6bd015 (diff) | |
Use dcp::File in DCP-o-matic (#2231).
Diffstat (limited to 'src/lib/file_group.h')
| -rw-r--r-- | src/lib/file_group.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/lib/file_group.h b/src/lib/file_group.h index 9521da7ec..693bf89ba 100644 --- a/src/lib/file_group.h +++ b/src/lib/file_group.h @@ -28,7 +28,9 @@ #define DCPOMATIC_FILE_GROUP_H +#include <dcp/file.h> #include <boost/filesystem.hpp> +#include <boost/optional.hpp> #include <vector> @@ -41,7 +43,6 @@ public: FileGroup (); explicit FileGroup (boost::filesystem::path); explicit FileGroup (std::vector<boost::filesystem::path> const &); - ~FileGroup (); FileGroup (FileGroup const&) = delete; FileGroup& operator= (FileGroup const&) = delete; @@ -58,7 +59,7 @@ private: std::vector<boost::filesystem::path> _paths; /** Index of path that we are currently reading from */ mutable size_t _current_path = 0; - mutable FILE* _current_file = nullptr; + mutable boost::optional<dcp::File> _current_file; mutable size_t _current_size = 0; mutable int64_t _position = 0; }; |
