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

virtual Int64 Impala::Util::IOBufferChannel::Puts ( const char *  buf  )  [inline, virtual]

Reimplemented from Impala::Util::IOBuffer.

Definition at line 209 of file IOBufferChannel.h.

References Write().

00210     {
00211         Int64 len = strlen(buf) + 1;
00212         char* writeBuf = new char[len];
00213         memcpy(writeBuf, buf, len);
00214         writeBuf[len-1] = '\n';
00215         Write(writeBuf, len);
00216         delete writeBuf;
00217         return 1;
00218     }

Here is the call graph for this function:


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