/[projects]/smsdaemon/ConfigFile.h
ViewVC logotype

Diff of /smsdaemon/ConfigFile.h

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 146 by torben, Sun Dec 7 20:06:12 2008 UTC revision 208 by torben, Sun Dec 21 18:41:08 2008 UTC
# Line 33  Line 33 
33    
34  #include <string>  #include <string>
35  #include <map>  #include <map>
36    #include <vector>
37  #include "Value.h"  #include "Value.h"
38    
39  class ConfigFile  class ConfigFile
40  {  {
41          //std::map<std::string,Chameleon> content_;          std::multimap<std::string,Value> content_;
42          std::map<std::string,Value> content_;          typedef std::multimap<std::string,Value>::const_iterator content_iterator;
43    
44            std::string filename_;
45            bool Open();
46    
47  public:  public:
48          ConfigFile();          ConfigFile();
49          ConfigFile(std::string const& configFile);          ConfigFile(std::string const& configFile);
50          bool Open(std::string const& configFile);          bool Open(std::string const& configFile);
51            bool Reload();
52    
53            std::string DumpConfig() const;
54    
55          Value const& GetValue(std::string const& section, std::string const& entry) const;          Value const& GetValue(std::string const& section, std::string const& entry) const;
56            std::vector<Value> GetValues(std::string const& section, std::string const& entry) const;
57    
58          Value const& GetValue(std::string const& section, std::string const& entry, double value);          Value const& GetValue(std::string const& section, std::string const& entry, double value);
59          Value const& GetValue(std::string const& section, std::string const& entry, std::string const& value);          Value const& GetValue(std::string const& section, std::string const& entry, std::string const& value);
60  };  };
61    
62    namespace ConfigHelper
63    {
64            std::map<std::string, std::string> ParseArguments(const std::string& args);
65            int StringToInt(const std::string& input);
66    }
67    
68  #endif  #endif
69    

Legend:
Removed from v.146  
changed lines
  Added in v.208

  ViewVC Help
Powered by ViewVC 1.1.20