--- parser3/src/include/pa_array.h 2002/01/21 12:10:07 1.49 +++ parser3/src/include/pa_array.h 2002/08/01 11:26:46 1.54 @@ -1,15 +1,15 @@ /** @file Parser: Array & Array_iter classes decls. - Copyright (c) 2001 ArtLebedev Group (http://www.artlebedev.com) - Author: Alexander Petrosyan (http://paf.design.ru) - - $Id: pa_array.h,v 1.49 2002/01/21 12:10:07 paf Exp $ + Copyright (c) 2001, 2002 ArtLebedev Group (http://www.artlebedev.com) + Author: Alexandr Petrosian (http://paf.design.ru) */ #ifndef PA_ARRAY_H #define PA_ARRAY_H +static const char* IDENT_ARRAY_Y="$Id: pa_array.h,v 1.54 2002/08/01 11:26:46 paf Exp $"; + #include "pa_pool.h" #include "pa_types.h" #include "pa_string.h" @@ -64,6 +64,7 @@ public: public: Array(Pool& apool, int initial_rows=CR_INITIAL_ROWS_DEFAULT); + Array(const Array& source, int offset=0); /// size Array. how many items are in it int size() const { return fused_rows; } @@ -82,6 +83,7 @@ public: int get_int(int index) const { return reinterpret_cast(get(index)); } void put(int index, Item *item); + void put_int(int index, int value) { put(index, reinterpret_cast(value)); } /// convinient way to get strings from Array. I long for Array const String *get_string(int index) const { return const_cast(static_cast(get(index))); @@ -106,6 +108,11 @@ public: private: + /// constructor helper + void construct_new(int initial_rows); + +private: + /// several record elements struct Chunk { int count; ///< the number of rows in chunk