diff options
| author | Carl Hetherington <cth@carlh.net> | 2013-11-23 13:12:04 +0000 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2013-11-23 13:12:04 +0000 |
| commit | 13b2b8f48f3f1a22277a760a7fada980b9f37677 (patch) | |
| tree | 53f32b233750fd0d64ebf877248bcd1a5c9bd9fd /src/lib/content.h | |
| parent | 10f55bf3a2ac9340263a410fa2a69f1360f5c227 (diff) | |
Use FileGroup in FFmpeg.
Diffstat (limited to 'src/lib/content.h')
| -rw-r--r-- | src/lib/content.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/lib/content.h b/src/lib/content.h index e569c1431..b4d90b22f 100644 --- a/src/lib/content.h +++ b/src/lib/content.h @@ -68,6 +68,11 @@ public: std::string path_summary () const; + std::vector<boost::filesystem::path> paths () const { + boost::mutex::scoped_lock lm (_mutex); + return _paths; + } + size_t number_of_paths () const { boost::mutex::scoped_lock lm (_mutex); return _paths.size (); |
