summaryrefslogtreecommitdiff
path: root/transcode.h
diff options
context:
space:
mode:
Diffstat (limited to 'transcode.h')
-rw-r--r--transcode.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/transcode.h b/transcode.h
index 2a63b17..d0e781d 100644
--- a/transcode.h
+++ b/transcode.h
@@ -5,17 +5,17 @@
#include "encoder.h"
#include "http.h"
-#include <iostream>
+#include <string>
class Transcoder {
private:
- std::istream& is;
+ std::string path;
HTTPResponse& res;
DecoderBase& decoder;
EncoderBase& encoder;
public:
- Transcoder(std::istream& i, HTTPResponse& r, DecoderBase& d, EncoderBase& e);
+ Transcoder(std::string p, HTTPResponse& r, DecoderBase& d, EncoderBase& e);
void run();
};