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

virtual bool Impala::Persistency::XmlFileReader::FileExists ( const std::string &  address  )  [inline, virtual]

Definition at line 85 of file XmlFileReader.h.

Referenced by Read().

00086     {
00087         std::ifstream xmlFile(address.c_str());
00088         if (xmlFile.is_open())
00089         {
00090             xmlFile.close();
00091             return true;
00092         }
00093         return false;
00094     }


Generated on Thu Jan 13 09:23:58 2011 for ImpalaSrc by  doxygen 1.5.1