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

template<class ElemT>
Impala::Core::Vector::VectorTem< ElemT >::VectorTem ( const VectorTem< ElemT > &  v  )  [inline]

Copy constructor.

Definition at line 70 of file VectorTem.h.

00071     {
00072         mSize = v.mSize;
00073         mIsWrapper = v.mIsWrapper;
00074         mData = (mIsWrapper) ? v.mData : new ElemT[mSize];
00075         if (!mIsWrapper)
00076             CopyData(mSize, v.mData);
00077     }


Generated on Fri Mar 19 11:27:34 2010 for ImpalaSrc by  doxygen 1.5.1