From 0e3c3380d519b033500b4ed1ccd3acf707c34372 Mon Sep 17 00:00:00 2001 From: Vegard Storheil Eriksen Date: Sun, 2 Jan 2011 22:28:26 +0100 Subject: Merge HTTPResponse into HTTP::Connection. --- transcode.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'transcode.h') 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 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(); }; -- cgit v1.2.3