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

template<class C1, class C2>
void Impala::Core::Column::CopyRev ( C1 *  dst,
C2 *  src,
int  nrElem 
) [inline]

Definition at line 17 of file CopyRev.h.

References ILOG_ERROR, and ILOG_VAR.

00018 {
00019     ILOG_VAR(Impala.Core.Column.CopyRev);
00020     if ((nrElem > src->Capacity()) || (nrElem > dst->Capacity()))
00021     {
00022         ILOG_ERROR("Incompatible range");
00023         return;
00024     }
00025     for (int i=0 ; i<nrElem ; i++)
00026         dst->Set(i, src->Get(nrElem - 1 - i));
00027 }


Generated on Thu Jan 13 09:18:47 2011 for ImpalaSrc by  doxygen 1.5.1