summaryrefslogtreecommitdiff
path: root/transcode.h
diff options
context:
space:
mode:
authorVegard Storheil Eriksen <zyp@jvnv.net>2011-01-06 05:29:39 +0100
committerVegard Storheil Eriksen <zyp@jvnv.net>2011-01-06 05:29:47 +0100
commit6f2fefdd9ff5f8561b3538efb5eb0765a9b4a141 (patch)
treede37cd2d500a777344b611321ac45bce66ad5c26 /transcode.h
parentffd8b5976af7e80425c7cf043528212528877b16 (diff)
Replaced iostream-based decoder-encoder chain with direct chain.
Diffstat (limited to 'transcode.h')
-rw-r--r--transcode.h22
1 files changed, 0 insertions, 22 deletions
diff --git a/transcode.h b/transcode.h
deleted file mode 100644
index 56f16c1..0000000
--- a/transcode.h
+++ /dev/null
@@ -1,22 +0,0 @@
-#ifndef TRANSCODE_H
-#define TRANSCODE_H
-
-#include "decoder.h"
-#include "encoder.h"
-#include "http_connection.h"
-
-#include <string>
-
-class Transcoder {
- private:
- std::string path;
- HTTP::Connection::p res;
- DecoderFilter::p decoder;
- EncoderFilter::p encoder;
-
- public:
- Transcoder(std::string p, HTTP::Connection::p r, DecoderFilter::p d, EncoderFilter::p e);
- void run();
-};
-
-#endif