00001
00013 #ifndef CCSV_H_INCLUDED
00014 #define CCSV_H_INCLUDED
00015
00016 #include <Coconut/coconut-sysdep.h>
00017 #include <Coconut/clist.h>
00018
00025 @interface CCsv : NSObject
00026 {
00028 CList * row_list ;
00029 }
00030
00043 + parse: (NSString *) str withEscape: (BOOL) withesc ;
00044
00051 - init ;
00052
00058 - (void) dealloc ;
00059
00072 - (int) parse: (NSString *) str withEscape: (BOOL) withesc ;
00073
00080 - (uint_t) rowNum ;
00081
00090 - (CList *) rowList ;
00091
00098 - (void) print: (FILE *) outfp ;
00099 @end
00100
00101 #endif
00102