--- parser3/src/include/pa_table.h 2001/03/19 17:42:13 1.15 +++ parser3/src/include/pa_table.h 2001/03/20 06:45:18 1.18 @@ -5,7 +5,7 @@ Author: Alexander Petrosyan (http://design.ru/paf) - $Id: pa_table.h,v 1.15 2001/03/19 17:42:13 paf Exp $ + $Id: pa_table.h,v 1.18 2001/03/20 06:45:18 paf Exp $ */ #ifndef PA_TABLE_H @@ -17,9 +17,10 @@ #include "pa_string.h" #include "pa_request.h" -/// parser \b table class backend -/** - holds +/** + parser \b table class backend. + + holds: - column names[if any] - data rows - current row pointer @@ -42,12 +43,12 @@ public: /// column names const Array *columns() { return fcolumns; } - /// moves \a current pointer + /// moves @a current pointer void set_current(int acurrent) { fcurrent=acurrent; } - /// \return current pointer + /// @return current pointer int get_current() { return fcurrent; } - /// \return item from \a column_name + /// @return item from @a column_name const String *item(const String& column_name); private: