summaryrefslogtreecommitdiff
path: root/src/lib/decoder.h
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2013-07-20 00:53:14 +0100
committerCarl Hetherington <cth@carlh.net>2013-07-20 00:53:14 +0100
commit293583097f7b25e481f0898f13c62c10aac33719 (patch)
tree399279b6903b63a0f9ab1ec1365fce59ce9984d1 /src/lib/decoder.h
parentd7d329289a10ed19f27dbfc4bf107a658a72190e (diff)
Remove some unused stuff.
Diffstat (limited to 'src/lib/decoder.h')
-rw-r--r--src/lib/decoder.h19
1 files changed, 3 insertions, 16 deletions
diff --git a/src/lib/decoder.h b/src/lib/decoder.h
index 6cce9e68d..9eb4850f9 100644
--- a/src/lib/decoder.h
+++ b/src/lib/decoder.h
@@ -24,17 +24,11 @@
#ifndef DCPOMATIC_DECODER_H
#define DCPOMATIC_DECODER_H
-#include <vector>
-#include <string>
-#include <stdint.h>
#include <boost/shared_ptr.hpp>
-#include <boost/signals2.hpp>
-#include "film.h"
+#include <boost/weak_ptr.hpp>
+#include <boost/utility.hpp>
-class Image;
-class Log;
-class DelayLine;
-class FilterGraph;
+class Film;
/** @class Decoder.
* @brief Parent class for decoders of content.
@@ -56,13 +50,6 @@ protected:
/** The Film that we are decoding in */
boost::weak_ptr<const Film> _film;
-
-private:
- /** This will be called when our Film emits Changed */
- virtual void film_changed (Film::Property) {}
-
- /** Connection to our Film */
- boost::signals2::scoped_connection _film_connection;
};
#endif