summaryrefslogtreecommitdiff
path: root/src/lib/decoder.cc
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2013-05-22 17:36:11 +0100
committerCarl Hetherington <cth@carlh.net>2013-05-22 17:36:11 +0100
commit596441a4e8cf03a88113646ca6da2f90e721a38b (patch)
treebf364e57aecc1f019d69b8faf32b8818eaa9d98b /src/lib/decoder.cc
parent11c70b0e3051517e7bb96a7d6fa53053dab6e978 (diff)
Various hacks.
Diffstat (limited to 'src/lib/decoder.cc')
-rw-r--r--src/lib/decoder.cc11
1 files changed, 0 insertions, 11 deletions
diff --git a/src/lib/decoder.cc b/src/lib/decoder.cc
index 2308bbd98..637e0ddb2 100644
--- a/src/lib/decoder.cc
+++ b/src/lib/decoder.cc
@@ -21,15 +21,11 @@
* @brief Parent class for decoders of content.
*/
-#include <iostream>
#include "film.h"
-#include "exceptions.h"
-#include "util.h"
#include "decoder.h"
#include "i18n.h"
-using std::string;
using boost::shared_ptr;
/** @param f Film.
@@ -40,10 +36,3 @@ Decoder::Decoder (shared_ptr<const Film> f)
{
_film_connection = f->Changed.connect (bind (&Decoder::film_changed, this, _1));
}
-
-/** @return true on error */
-bool
-Decoder::seek (Time)
-{
- throw DecodeError (N_("decoder does not support seek"));
-}