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