00001 #ifndef UTIL_USER_PARAM_H 00002 #define UTIL_USER_PARAM_H 00003 00004 #include <string> 00005 00006 class User_Param 00007 { 00008 public: 00009 std::string name; 00010 std::string value; 00011 }; 00012 00013 #endif // UTIL_USER_PARAM_H