00001 #ifndef BOERN_CONFIG_HPP 00002 #define BOERN_CONFIG_HPP 00003 // Copyright (C) 2004 Bernhard Assmann <bernie@tuxomania.net> 00004 // 00005 // This program is free software; you can redistribute it and/or modify 00006 // it under the terms of the GNU General Public License as published by 00007 // the Free Software Foundation; either version 2 of the License, or 00008 // (at your option) any later version. 00009 // 00010 // This program is distributed in the hope that it will be useful, 00011 // but WITHOUT ANY WARRANTY; without even the implied warranty of 00012 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 00013 // GNU General Public License for more details. 00014 // 00015 // You should have received a copy of the GNU General Public License 00016 // along with this program; if not, write to the Free Software 00017 // Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. 00018 // 00019 00020 #include <xercesc/sax2/SAX2XMLReader.hpp> 00021 00022 #include <string> 00023 #include <map> 00024 00025 namespace psfa 00026 { 00027 00036 class Config 00037 { 00038 public: 00039 ~Config(); 00040 00046 static Config* 00047 getConfig(); 00048 00056 bool 00057 parseConfig( const std::string file ); 00058 00063 void 00064 showConfig() const; 00065 00075 const std::string 00076 getConfigValue( const std::string pool, 00077 const std::string key ) const; 00078 00079 private: 00084 Config(); 00085 00086 static Config* config_; 00088 std::map< std::string, std::string > configData_; 00090 }; 00091 } 00092 #endif
1.3.4