summaryrefslogtreecommitdiff
path: root/controller/JSONDB.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'controller/JSONDB.hpp')
-rw-r--r--controller/JSONDB.hpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/controller/JSONDB.hpp b/controller/JSONDB.hpp
index 5b7c5e50..d2549173 100644
--- a/controller/JSONDB.hpp
+++ b/controller/JSONDB.hpp
@@ -45,13 +45,13 @@ public:
JSONDB(const std::string &basePath) :
_basePath(basePath)
{
- _reload(_basePath);
+ _reload(_basePath,std::string());
}
inline void reload()
{
_db.clear();
- _reload(_basePath);
+ _reload(_basePath,std::string());
}
bool writeRaw(const std::string &n,const std::string &obj);
@@ -95,7 +95,7 @@ public:
inline bool operator!=(const JSONDB &db) const { return (!(*this == db)); }
private:
- void _reload(const std::string &p);
+ void _reload(const std::string &p,const std::string &b);
bool _isValidObjectName(const std::string &n);
std::string _genPath(const std::string &n,bool create);