X-Git-Url: https://git.brokenzipper.com/gitweb?a=blobdiff_plain;f=src%2FResource.h;h=e75b87185dbec898bd88519401380373c6f47f72;hb=89563281384c34886fb12b169d1bdf8d293f0b48;hp=90b86d315ca06fd12c89c46d2aa073bbc9ce398e;hpb=455b288c3e4b027060481f7c10e5931599d1ae96;p=chaz%2Fopenbox diff --git a/src/Resource.h b/src/Resource.h index 90b86d31..e75b8718 100644 --- a/src/Resource.h +++ b/src/Resource.h @@ -27,12 +27,12 @@ #include #include -class obResource { +class Resource { public: - obResource(const std::string &file); - virtual ~obResource(); + explicit Resource(const std::string &file); + Resource(); + virtual ~Resource(); - // an empty string is an invalid value for the file and will cause an assert inline const std::string &file() const { return static_cast(m_file); } @@ -50,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); @@ -64,6 +66,7 @@ public: std::string &value) const; private: + static bool m_initialized; std::string m_file; bool m_modified; bool m_autosave;