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

template<class BackInsertIterator>
void Impala::Util::IOBuffer::ReadStrings ( BackInsertIterator  bi,
bool  skipEC,
int  count 
) [inline]

Definition at line 137 of file IOBuffer.h.

References Available(), ReadLine(), and Valid().

00138     {
00139         if (! Valid())
00140             return;
00141 
00142         int c=0;
00143         while (Available())
00144         {
00145             String line = ReadLine();
00146             if (line[0] || !skipEC)
00147             {
00148                 if ((line[0] != '#') || !skipEC)
00149                     *bi++ = line;
00150             }
00151             if (++c==count)
00152                 break;
00153         }
00154     }

Here is the call graph for this function:


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