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

template<class NativeType>
void Impala::Util::IOBuffer::DoNativeTypeWrite ( NativeType  val  )  [inline, protected]

Reimplemented in Impala::Util::IOBufferChannel, and Impala::Util::IOBufferFile.

Definition at line 717 of file IOBuffer.h.

References Write().

Referenced by NativeTypeWrite().

00718     {
00719         String fs = NativeTypeFormat<NativeType>(0) + " ";
00720         char buf[1024];
00721         sprintf(buf, fs.c_str(), val);
00722         Int64 i = 0;
00723         while (buf[i] != ' ')
00724             i++;
00725         Write(buf, i+1);
00726     }

Here is the call graph for this function:


Generated on Thu Jan 13 09:24:15 2011 for ImpalaSrc by  doxygen 1.5.1