diff options
author | Jon Bergli Heier <snakebite@jvnv.net> | 2011-01-03 20:50:59 +0100 |
---|---|---|
committer | Jon Bergli Heier <snakebite@jvnv.net> | 2011-01-03 20:50:59 +0100 |
commit | 3a3bab26aea5c064c07c307d1e8ccf463edae568 (patch) | |
tree | 8789f9cbec352268858f5c9c6a1d8e2b270a3d76 /transcode.h | |
parent | b3c30578ae1709feb978b72d756d88c17941cad4 (diff) |
Decoder, encoder and transcoder-related classes and factories now uses boost::shared_ptr.
Diffstat (limited to 'transcode.h')
-rw-r--r-- | transcode.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/transcode.h b/transcode.h index 70d0113..56f16c1 100644 --- a/transcode.h +++ b/transcode.h @@ -11,11 +11,11 @@ class Transcoder { private: std::string path; HTTP::Connection::p res; - DecoderBase& decoder; - EncoderBase& encoder; + DecoderFilter::p decoder; + EncoderFilter::p encoder; public: - Transcoder(std::string p, HTTP::Connection::p r, DecoderBase& d, EncoderBase& e); + Transcoder(std::string p, HTTP::Connection::p r, DecoderFilter::p d, EncoderFilter::p e); void run(); }; |