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

int Impala::Core::Feature::VirtualFeatureTable::GetVector ( int  nr,
Real32 buffer,
int  bufferSize 
) [inline]

Definition at line 60 of file VirtualFeatureTable.h.

References GetVectorImpl(), GetVectorLength(), and ILOG_ERROR.

00061     {
00062         if (bufferSize < GetVectorLength())
00063         {
00064             ILOG_ERROR("[GetVector] Buffer too small");
00065             return 0;
00066         }
00067         Real64* tmpBuf = new Real64[bufferSize];
00068         int res = GetVectorImpl(nr, tmpBuf, bufferSize);
00069         for (int i=0 ; i<res ; i++)
00070             buffer[i] = tmpBuf[i];
00071         delete tmpBuf;
00072         return res;
00073     }

Here is the call graph for this function:


Generated on Thu Jan 13 09:19:31 2011 for ImpalaSrc by  doxygen 1.5.1