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

template<class Iterator>
bool Impala::Util::IOBuffer::WriteStrings ( Iterator  begin,
Iterator  end,
int  count = -1 
) [inline]

Definition at line 158 of file IOBuffer.h.

References Puts(), and Valid().

00159     {
00160         if (! Valid())
00161             return false;
00162 
00163         int c=0;
00164         for (Iterator it=begin ; it!=end ; it++)
00165         {
00166             String s = *it;
00167             Puts(s);
00168             if (++c == count)
00169                 break;
00170         }
00171         return true;
00172     }

Here is the call graph for this function:


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