]> Dogcows Code - chaz/openbox/blobdiff - src/Resource.h
gcc 3 compatibility, converted strstreams to stringstreams
[chaz/openbox] / src / Resource.h
index da9a4d5cf4b6be01a75ce54d7030a50948d2005b..e75b87185dbec898bd88519401380373c6f47f72 100644 (file)
 #include <X11/Xlib.h>
 #include <X11/Xresource.h>
 
-class obResource {
+class Resource {
 public:
-  obResource(const std::string &file);
-  obResource();
-  virtual ~obResource();
+  explicit Resource(const std::string &file);
+  Resource();
+  virtual ~Resource();
 
-  // an empty string will cause an assert if load() or save() is called
   inline const std::string &file() const {
     return static_cast<const std::string &>(m_file);
   }
@@ -51,8 +50,10 @@ public:
 
   void save();
   bool load();
+  void create();
 
   void setValue(const std::string &rname, bool value);
+  void setValue(const std::string &rname, int value);
   void setValue(const std::string &rname, long value);
   void setValue(const std::string &rname, const std::string &value);
   void setValue(const std::string &rname, const char *value);
@@ -65,6 +66,7 @@ public:
                 std::string &value) const;
 
 private:
+  static bool m_initialized;
   std::string m_file;
   bool m_modified;
   bool m_autosave;
This page took 0.023544 seconds and 4 git commands to generate.