X-Git-Url: https://git.carlh.net/gitweb/?a=blobdiff_plain;f=src%2Flib%2Fplaylist.h;h=2d68d3f393bd7cf00b804215364170a6b99c433c;hb=a60668a37f05a125954ac5e03db0530995ac5769;hp=0dd2370a8c6e36c8ba805190a3524c4f06031e6a;hpb=bb949ec65adf95f4a2c7dd5ee7e97b9daaaf3d3f;p=dcpomatic.git diff --git a/src/lib/playlist.h b/src/lib/playlist.h index 0dd2370a8..2d68d3f39 100644 --- a/src/lib/playlist.h +++ b/src/lib/playlist.h @@ -24,8 +24,9 @@ #include "change_signaller.h" +#include "dcpomatic_time.h" #include "frame_rate_change.h" -#include "util.h" +#include "types.h" #include #include #include @@ -83,7 +84,7 @@ public: void repeat (std::shared_ptr film, ContentList, int); - /** Emitted when content has been added to or removed from the playlist; implies OrderChanged */ + /** Emitted when content has been added to or removed from the playlist; implies OrderChange */ mutable boost::signals2::signal Change; mutable boost::signals2::signal OrderChange; /** Emitted when the length might have changed; may sometimes be emitted when it has not */ @@ -97,7 +98,7 @@ private: void reconnect (std::shared_ptr film); mutable boost::mutex _mutex; - /** List of content. Kept sorted in position order. */ + /** List of content, kept sorted by ContentSorter() */ ContentList _content; bool _sequence = true; bool _sequencing = false;