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

VirtualMatrix* Impala::Core::Matrix::VirtualMatrixFactory::ConstructIOBufferWriter ( int  nrRow,
int  nrCol,
Persistency::File  file,
bool  write32,
bool  preWrite 
) [inline]

Definition at line 45 of file VirtualMatrixFactory.h.

References Impala::Persistency::File::GetPath(), Impala::Persistency::File::GetWriteBuffer(), and ILOG_ERROR.

00047     {
00048         Util::IOBuffer* buf = file.GetWriteBuffer();
00049         if (!buf)
00050         {
00051             ILOG_ERROR("[ConstructIOBufferWriter] Couldn't get writebufer for"
00052                        << file.GetPath());
00053             return 0;
00054         }
00055         return new VirtualMatrixIOBufferWriter(nrRow, nrCol, buf, true, write32,
00056                                                preWrite);
00057     }

Here is the call graph for this function:


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