ulib  1.0
S.W. Lee's essential C++ library
 All Classes Namespaces Files Functions Variables Typedefs Macros Pages
ustringlistro.h
Go to the documentation of this file.
1 
11 #ifndef ___ustringlistro___
12 #define ___ustringlistro___
13 
14 #include <string.h>
15 #include <stdio.h>
16 #include <stdlib.h>
17 #include "ustring.h"
18 #include "ulist.h"
19 
20 
21 namespace ulib {
22 
24 
33 
35  {
36  public:
38  CUStringListRO( const CUString &str, const CUString &delimeter );
40 
41  public:
42  size_t GetSize();
43  char *GetAt( int nPos );
44  void MakeList( const CUString &arg_str, CUString delimeter );
45  void Clear();
46 
47  public:
49  int *pos;
50  size_t size;
51  };
52 
53 }
54 
55 #endif
56