Diff for /parser3/src/include/pa_array.h between versions 1.2 and 1.4

version 1.2, 2001/01/27 15:21:05 version 1.4, 2001/01/29 09:38:33
Line 64  private: Line 64  private:
         // array size          // array size
         int fused_rows;          int fused_rows;
   
         int cache_index;          int cache_chunk_base;
         Chunk::Row *cache_row;          Chunk *cache_chunk;
         int cache_countdown;  
         Chunk::Row *cache_link_row;  
                   
 private:  private:
         // new&constructors made private to enforce factory manufacturing at pool          // new&constructors made private to enforce factory manufacturing at pool
Line 91  public: Line 89  public:
   
         int size() { return fused_rows; }          int size() { return fused_rows; }
         Array& operator += (Item src);          Array& operator += (Item src);
   
         /*  
         void put(int index, Item item);  
         Item get(int index);  
         */  
         Item& operator [] (int index);          Item& operator [] (int index);
           Array& operator += (Array& src);
           void remove(int index, int count=1);
   
 private: //disabled  private: //disabled
   

Removed from v.1.2  
changed lines
  Added in v.1.4


E-mail: