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

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

Reimplemented from Impala::Util::IOBuffer.

Definition at line 308 of file IOBufferChannel.h.

References Write().

Referenced by NativeTypeWrite().

00309     {
00310         String fs = NativeTypeFormat<NativeType>(0) + " ";
00311         char buf[1024];
00312         sprintf(buf, fs.c_str(), val);
00313         Int64 i = 0;
00314         while (buf[i] != ' ')
00315             i++;
00316         Write(buf, i+1);
00317     }

Here is the call graph for this function:


Generated on Fri Mar 19 11:40:38 2010 for ImpalaSrc by  doxygen 1.5.1