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

template<class Iterator>
bool Impala::FileWriteString ( String  fileName,
Iterator  begin,
Iterator  end 
)

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 }


Generated on Fri Mar 19 10:35:25 2010 for ImpalaSrc by  doxygen 1.5.1