mirror of
https://github.com/pocoproject/poco.git
synced 2025-10-27 11:06:50 +01:00
Add removeRaw, create default JSON::Object in default ctor, trigger events when enabled.
This commit is contained in:
@@ -113,15 +113,20 @@ public:
|
||||
/// Saves the configuration to the given stream
|
||||
|
||||
|
||||
void setInt(const std::string& key, int value);
|
||||
virtual void setInt(const std::string& key, int value);
|
||||
|
||||
|
||||
void setBool(const std::string& key, bool value);
|
||||
virtual void setBool(const std::string& key, bool value);
|
||||
|
||||
|
||||
void setDouble(const std::string& key, double value);
|
||||
virtual void setDouble(const std::string& key, double value);
|
||||
|
||||
|
||||
virtual void setString(const std::string& key, const std::string& value);
|
||||
|
||||
|
||||
virtual void removeRaw(const std::string& key);
|
||||
|
||||
|
||||
protected:
|
||||
|
||||
|
||||
Reference in New Issue
Block a user