summaryrefslogtreecommitdiff
path: root/transcode.h
blob: d0e781d9babfba61bedfe1bd8282adfec7ce6978 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#ifndef TRANSCODE_H
#define TRANSCODE_H

#include "decoder.h"
#include "encoder.h"
#include "http.h"

#include <string>

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