template<class BackInsertIterator>
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 }
|