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

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

Copy constructor.

Definition at line 71 of file VectorTem.h.

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


Generated on Thu Jan 13 09:21:38 2011 for ImpalaSrc by  doxygen 1.5.1