template<class Iterator>
Definition at line 12 of file FileWriteString.h. 00013 { 00014 Impala::File f(fileName, "w"); 00015 if (! f.Valid()) 00016 return false; 00017 for (Iterator it=begin ; it!=end ; it++) 00018 { 00019 String s = *it; 00020 fprintf(f.Fp(), "%s\n", s.c_str()); 00021 } 00022 return true; 00023 }
|