00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022 #ifndef INCLUDED_GR_PREFS_H
00023 #define INCLUDED_GR_PREFS_H
00024
00025 #include <string>
00026
00034 class gr_prefs
00035 {
00036 public:
00037 static gr_prefs *singleton();
00038 static void set_singleton(gr_prefs *p);
00039
00040 virtual ~gr_prefs();
00041
00045 virtual bool has_section(const std::string section);
00046
00050 virtual bool has_option(const std::string section, const std::string option);
00051
00055 virtual const std::string get_string(const std::string section,
00056 const std::string option,
00057 const std::string default_val);
00058
00062 virtual bool get_bool(const std::string section,
00063 const std::string option,
00064 bool default_val);
00065
00069 virtual long get_long(const std::string section,
00070 const std::string option,
00071 long default_val);
00072
00076 virtual double get_double(const std::string section,
00077 const std::string option,
00078 double default_val);
00079 };
00080
00081
00082 #endif