summaryrefslogtreecommitdiff
path: root/transcode.h
diff options
context:
space:
mode:
authorVegard Storheil Eriksen <zyp@jvnv.net>2011-01-02 22:28:26 +0100
committerVegard Storheil Eriksen <zyp@jvnv.net>2011-01-02 22:28:26 +0100
commit0e3c3380d519b033500b4ed1ccd3acf707c34372 (patch)
tree115cbbf0200fc34011e68b32e56d58458a72d87f /transcode.h
parent237c3e226b7c2ac391b0e8d354e5fc6f587a41ba (diff)
Merge HTTPResponse into HTTP::Connection.
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();
};