#ifndef VGS_PROCTOOLS_ENVIRONMENT_H #define VGS_PROCTOOLS_ENVIRONMENT_H #include #include namespace proctools { class environment { public: void set(); void put(const std::string& name, const std::string& value); private: std::map m_variables; }; inline void environment::put(const std::string& name, const std::string& value) { m_variables[name] = value; } }; #endif // VGS_PROCTOOLS_ENVIRONMENT_H