Home || Architecture || Video Search || Visual Search || Scripts || Applications || Important Messages || OGL || Src

template<class ElemT>
Impala::Core::Column::ColumnTem< ElemT >::ColumnTem ( const ColumnTem< ElemT > &  c  )  [inline]

Copy constructor.

Definition at line 41 of file ColumnTem.h.

00042     {
00043         mCapacity = c.mCapacity;
00044         mData = new ElemT[mCapacity];
00045         for (int i=0 ; i<mCapacity ; i++)
00046             mData[i] = c.mData[i];
00047     }


Generated on Fri Mar 19 11:06:47 2010 for ImpalaSrc by  doxygen 1.5.1