--- parser3/src/include/pa_table.h 2001/01/30 13:07:31 1.6 +++ parser3/src/include/pa_table.h 2001/02/20 18:45:51 1.8 @@ -1,5 +1,5 @@ /* - $Id: pa_table.h,v 1.6 2001/01/30 13:07:31 paf Exp $ + $Id: pa_table.h,v 1.8 2001/02/20 18:45:51 paf Exp $ */ /* @@ -34,7 +34,7 @@ public: void inc_current() { fcurrent++; } void read_item(String& result, const String& column_name) { - result.APPEND(item(column_name), forigin.file, forigin.line+fcurrent); + result.APPEND(item(column_name), 0/*TODO:think about*/, forigin.file, forigin.line+fcurrent); } protected: @@ -54,7 +54,7 @@ protected: // columns Array *fcolumns; - const Array *at(int index); + const Array& at(int index); const char *item(int column_index); const char *item(const String& column_name);