Home || Architecture || Video Search || Visual Search || Scripts || Applications || 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 39 of file VectorTem.h.

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


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