diff options
| author | Carl Hetherington <cth@carlh.net> | 2018-08-21 14:27:00 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2018-08-21 14:27:00 +0100 |
| commit | e2ebf847ce9d6e74a1b9d768475b8ae552cfba82 (patch) | |
| tree | 4aaf64c47cc3f0dcc7eb002b7ed86bb75bcee51d /src/lib/content.h | |
| parent | 8c61932cc0425a67153fd9e8a34ec585bfa985c1 (diff) | |
Make Content::_paths private.
Diffstat (limited to 'src/lib/content.h')
| -rw-r--r-- | src/lib/content.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/lib/content.h b/src/lib/content.h index f09097ccf..f72007f04 100644 --- a/src/lib/content.h +++ b/src/lib/content.h @@ -199,8 +199,7 @@ protected: */ mutable boost::mutex _mutex; - /** Paths of our data files */ - std::vector<boost::filesystem::path> _paths; + void add_path (boost::filesystem::path p); private: friend struct ffmpeg_pts_offset_test; @@ -211,6 +210,9 @@ private: void signal_change (ChangeType, int); + /** Paths of our data files */ + std::vector<boost::filesystem::path> _paths; + std::string _digest; DCPTime _position; ContentTime _trim_start; |
