--- parser3/src/include/pa_table.h 2009/05/14 11:27:23 1.63 +++ parser3/src/include/pa_table.h 2015/07/28 14:42:44 1.65 @@ -1,14 +1,14 @@ /** @file Parser: table class decl. - Copyright (c) 2001-2005 ArtLebedev Group (http://www.artlebedev.com) + Copyright (c) 2001-2012 Art. Lebedev Studio (http://www.artlebedev.com) Author: Alexandr Petrosian (http://paf.design.ru) */ #ifndef PA_TABLE_H #define PA_TABLE_H -static const char * const IDENT_TABLE_H="$Date: 2009/05/14 11:27:23 $"; +#define IDENT_PA_TABLE_H "$Id: pa_table.h,v 1.65 2015/07/28 14:42:44 moko Exp $" #include "pa_types.h" #include "pa_hash.h" @@ -58,6 +58,9 @@ public: /// @return item from @a column const String* item(size_t column); + /// sets @a column value + void put_item(size_t column, const String*); + /// @return item from @a column. '0' if no such column const String* item(const String& column) { int index=column_name2index(column, false);