diff options
-rw-r--r-- | decoder.cpp | 3 | ||||
-rw-r--r-- | decoder.h | 4 | ||||
-rw-r--r-- | encoder.cpp | 3 | ||||
-rw-r--r-- | encoder.h | 4 |
4 files changed, 6 insertions, 8 deletions
diff --git a/decoder.cpp b/decoder.cpp index cffb8cf..420d538 100644 --- a/decoder.cpp +++ b/decoder.cpp @@ -1,6 +1,9 @@ #include "decoder.h" #include "decoders/mpg123_decoder.h" +#include <boost/function.hpp> +#include <boost/functional/factory.hpp> + #include <map> DecoderFilter::DecoderFilter(DecoderBase::p decoder_) { @@ -1,10 +1,6 @@ #ifndef DECODER_H #define DECODER_H -#include <boost/cstdint.hpp> -#include <boost/function.hpp> -#include <boost/functional/factory.hpp> -#include <boost/functional/value_factory.hpp> #include <boost/iostreams/concepts.hpp> #include <boost/iostreams/operations.hpp> #include <boost/shared_ptr.hpp> diff --git a/encoder.cpp b/encoder.cpp index d0566fb..0c0350a 100644 --- a/encoder.cpp +++ b/encoder.cpp @@ -1,6 +1,9 @@ #include "encoder.h" #include "encoders/lame_encoder.h" +#include <boost/function.hpp> +#include <boost/functional/factory.hpp> + #include <map> EncoderFilter::EncoderFilter(EncoderBase::p encoder_) { @@ -1,10 +1,6 @@ #ifndef ENCODER_H #define ENCODER_H -#include <boost/cstdint.hpp> -#include <boost/function.hpp> -#include <boost/functional/factory.hpp> -#include <boost/functional/value_factory.hpp> #include <boost/iostreams/concepts.hpp> #include <boost/iostreams/operations.hpp> #include <boost/shared_ptr.hpp> |