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 d0e781d..70d0113 100644
--- a/transcode.h
+++ b/transcode.h
@@ -3,19 +3,19 @@
#include "decoder.h"
#include "encoder.h"
-#include "http.h"
+#include "http_connection.h"
#include <string>
class Transcoder {
private:
std::string path;
- HTTPResponse& res;
+ HTTP::Connection::p res;
DecoderBase& decoder;
EncoderBase& encoder;
public:
- Transcoder(std::string p, HTTPResponse& r, DecoderBase& d, EncoderBase& e);
+ Transcoder(std::string p, HTTP::Connection::p r, DecoderBase& d, EncoderBase& e);
void run();
};