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

template<class SrcT, class DstT>
int Impala::Core::Matrix::VirtualMatrixIOBufferWriter::AddRowConv ( int  rowNr,
SrcT *  buffer 
) [inline, private]

Definition at line 117 of file VirtualMatrixIOBufferWriter.h.

References AddRowDirect(), and NrCol().

00118     {
00119         int nr = NrCol();
00120         DstT* tmpBuf = new DstT[nr];
00121         for (int i=0 ; i<nr ; i++)
00122             tmpBuf[i] = static_cast<DstT>(buffer[i]);
00123         int res = AddRowDirect(rowNr, tmpBuf);
00124         delete tmpBuf;
00125         return res;
00126     }

Here is the call graph for this function:


Generated on Thu Jan 13 09:20:23 2011 for ImpalaSrc by  doxygen 1.5.1