GDBMS 1.0
GDBMS_for_documentation/listi.h
Go to the documentation of this file.
00001 
00008 class listi{
00009   public:
00011 
00018     listi(char *init_str, char separator);
00019     ~listi();
00021 
00028     void addelement(char *element);
00030 
00037     void removeelement(char *element);
00039 
00046     char *returnstring();
00048 
00055     int getnum();
00057 
00064     char * getith(int i);
00065   private:
00066     
00067     
00068   protected:
00069     char **a;
00070     char *buf;
00071     int num;
00072     char separ;
00073 };
 All Classes Files Functions Variables Typedefs Enumerations Enumerator Defines