// Smersh // // Douglas Thrift // // $Id$ #ifndef _Environment_hpp_ #define _Environment_hpp_ #include #include #include using namespace std; class Environment { private: map env; public: Environment() {} ~Environment() {} string get(const string& name) const; int set(const string& name, const string& value, bool overwrite = true); int put(const string& env); void unset(const string& name); }; #endif // _Environment_hpp_