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

#include "cgiRequestBase.h"

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

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

#endif