#ifndef CGI_H #define CGI_H #include //for class string #include //for class map using namespace std; class cgi { //CGI (Common Gateway Interface) private: map m; public: cgi(); //declaration for constructor const map& get_input() const {return m;} }; #endif