diff options
| author | Carl Hetherington <cth@carlh.net> | 2025-05-06 01:06:38 +0200 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2025-05-08 01:29:35 +0200 |
| commit | 1473b29c1ad13024baebf9e8a63024f6484610e8 (patch) | |
| tree | 8937d02b4a045494df237cfbcb446e05bbaabb69 | |
| parent | 3ee71498b4f029ea2120eca608de0d2d5f35aa38 (diff) | |
Promote DCPContent::reels() to public.
| -rw-r--r-- | src/lib/dcp_content.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/lib/dcp_content.h b/src/lib/dcp_content.h index a0a18703a..4bef0a1a7 100644 --- a/src/lib/dcp_content.h +++ b/src/lib/dcp_content.h @@ -201,6 +201,8 @@ public: void check_font_ids(); + std::list<dcpomatic::DCPTimePeriod> reels(std::shared_ptr<const Film> film) const; + private: friend struct reels_test5; @@ -208,7 +210,6 @@ private: void read_directory (boost::filesystem::path); void read_sub_directory (boost::filesystem::path); - std::list<dcpomatic::DCPTimePeriod> reels (std::shared_ptr<const Film> film) const; bool overlaps(std::shared_ptr<const Film> film, std::function<bool (std::shared_ptr<const Content>)> part) const; std::string _name; |
