/* */ #ifndef _D_OPTION_H_ #define _D_OPTION_H_ #include "common.h" #include #include using namespace std; class Option { private: map table; public: Option(); ~Option(); void put(const string& name, const string& value); bool defined(const string& name) const; string get(const string& name) const; int getAsInt(const string& name) const; long long int getAsLLInt(const string& name) const; bool getAsBool(const string& name) const; }; #endif // _D_OPTION_H_