summaryrefslogtreecommitdiff
path: root/src/lib
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2013-07-16 12:47:10 +0100
committerCarl Hetherington <cth@carlh.net>2013-07-16 12:47:10 +0100
commit5a89b6e5f04878dc5a54980ef63d1f38d9428808 (patch)
treeba691ae9455eeacb4426915d73d65871847dbca9 /src/lib
parent05ef423e0fa4c1730c70770ff9528ee45f70e064 (diff)
Remove some unnecessary includes in film.h
Diffstat (limited to 'src/lib')
-rw-r--r--src/lib/film.h11
1 files changed, 4 insertions, 7 deletions
diff --git a/src/lib/film.h b/src/lib/film.h
index 24c43419a..6e9e19548 100644
--- a/src/lib/film.h
+++ b/src/lib/film.h
@@ -33,24 +33,21 @@
#include <boost/signals2.hpp>
#include <boost/enable_shared_from_this.hpp>
#include "util.h"
-#include "dci_metadata.h"
#include "types.h"
-#include "ffmpeg_content.h"
#include "playlist.h"
+#include "dci_metadata.h"
class DCPContentType;
-class Job;
-class Filter;
class Log;
-class ExamineContentJob;
-class AnalyseAudioJob;
-class ExternalAudioStream;
class Content;
class Player;
/** @class Film
+ *
* @brief A representation of some audio and video content, and details of
* how they should be presented in a DCP.
+ *
+ * The content of a Film is held in a Playlist (created and managed by the Film)
*/
class Film : public boost::enable_shared_from_this<Film>
{