ulib  1.0
S.W. Lee's essential C++ library
 All Classes Namespaces Files Functions Variables Typedefs Macros Pages
uoption.h
Go to the documentation of this file.
1 #ifndef ___uoption___
2 #define ___uoption___
3 
4 #include "ulib.h"
5 #include <map>
6 #include <string>
7 using namespace std;
8 
9 namespace ulib {
10 
22  class CUOption {
23  public:
24  CUOption();
25  bool Load( int argc, char *argv[] );
26  void Print( FILE *fp );
27  bool GetValue( CUString &key, CUString &value );
28 
29  map<string, string> option_map;
31  };
32 }
33 
34 #endif
35 
36 // EOF ㅁ
37