summaryrefslogtreecommitdiff
path: root/icespider/fcgi/cgiRequest.h
blob: c78f76eccf3a7420580a924175e6cbbe82b481a8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#ifndef ICESPIDER_CGI_CGIREQUEST_H
#define ICESPIDER_CGI_CGIREQUEST_H

#include "cgiRequestBase.h"

namespace IceSpider {
	class CgiRequest : public CgiRequestBase {
	public:
		CgiRequest(Core * c, int argc, char ** argv, char ** env);

		std::istream & getInputStream() const override;
		std::ostream & getOutputStream() const override;
	};
}

#endif