// Smersh // // Douglas Thrift // // $Id$ #ifndef _Smersh_hpp_ #define _Smersh_hpp_ #include #include #include #include using namespace std; inline string sgetenv(const string& name) { char* value = getenv(name.c_str()); return value != NULL ? value : ""; } class Smersh { private: multimap cgi; void parse(const string& method); public: Smersh(); ~Smersh() {} }; #endif // _Smersh_hpp_