ulib  1.0
S.W. Lee's essential C++ library
 All Classes Namespaces Files Functions Variables Typedefs Macros Pages
uparser.h
Go to the documentation of this file.
1 /*
2  작성자 : swlee
3  작성일 : Apr. 4, 2013
4  버전 : 0.1.0
5  설명 :
6  미구현 :
7  버그 :
8 */
9 
10 #ifndef ___uparser___
11 #define ___uparser___
12 
13 #include <stdio.h>
14 #include <string.h>
15 #include <time.h>
16 #include "ustring.h"
17 
18 
19 namespace ulib {
20 
21  class CUParser {
22  public:
23  CUParser();
24  ~CUParser();
25 
26  public:
27 
28  virtual bool ToString( CUString &ret );
29 
30 
31  public:
32 
33  private:
34 
35 
36  private:
37 
38 
39  };
40 
41 }
42 
43 #endif
44 
45 // EOF ㅁ
46