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

template<class BackInsertIterator>
void Impala::FileReadString ( BackInsertIterator  bi,
String  fileName,
bool  skipEC = true,
bool  needFile = true 
) [inline]

Definition at line 13 of file FileReadString.h.

Referenced by Impala::Util::ChannelAuthorization::ChannelAuthorization(), Impala::Job::Runner::GetJobErrorLog(), Impala::Application::WindowTrecSearch::InitDataConceptRanking(), Impala::Application::WindowTrecSearch::InitDataThreadFile(), Impala::CmdOptions::ReadIniFile(), and ReadStrings().

00015 {
00016     Impala::File f(fileName, "r", needFile);
00017     if (! f.Valid())
00018         return;
00019     while (! f.Eof())
00020     {
00021         String line = f.ReadLine(skipEC);
00022         if (line[0] || !skipEC)
00023             *bi++ = line;
00024     }
00025 }


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