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

template<class ElemT>
Impala::Core::Vector::VectorTem< ElemT >::VectorTem ( int  n,
ElemT *  data,
bool  isWrapper 
) [inline]

Vector with given data.

Definition at line 40 of file VectorTem.h.

00041     {
00042         mSize = n;
00043         mIsWrapper = isWrapper;
00044         mData = (mIsWrapper) ? data : new ElemT[n];
00045         if (!mIsWrapper)
00046             CopyData(n, data);
00047     }


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