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

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

Assignment operator.

Definition at line 103 of file VectorTem.h.

00104     {
00105         if (this != &v)
00106         {
00107             if ((mSize != v.mSize) && (!mIsWrapper))
00108             {
00109                 delete [] mData;
00110                 mSize = v.mSize;
00111                 mData = new ElemT[mSize];
00112             }
00113             CopyData(mSize, v.mData);
00114         }
00115         return *this;
00116     }


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