template<class Iterator>
Definition at line 183 of file IOBuffer.h. References Puts(), and Valid(). 00184 { 00185 if (! Valid()) 00186 return false; 00187 00188 int c=0; 00189 for (Iterator it=begin ; it!=end ; it++) 00190 { 00191 String s = *it; 00192 Puts(s); 00193 if (++c == count) 00194 break; 00195 } 00196 return true; 00197 }
Here is the call graph for this function: ![]()
|