template<class Iterator>
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:
|