summaryrefslogtreecommitdiff
path: root/transcode.h
diff options
context:
space:
mode:
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