#ifndef TRANSCODE_H #define TRANSCODE_H #include "decoder.h" #include "encoder.h" #include "http_connection.h" #include class Transcoder { private: std::string path; HTTP::Connection::p res; DecoderBase& decoder; EncoderBase& encoder; public: Transcoder(std::string p, HTTP::Connection::p r, DecoderBase& d, EncoderBase& e); void run(); }; #endif