bindings, controls.json file
This commit is contained in:
@@ -258,6 +258,10 @@ JObject& JObject::put(string key, string value){
|
||||
return *this;
|
||||
}
|
||||
|
||||
JObject& JObject::put(std::string key, const char* value) {
|
||||
return put(key, string(value));
|
||||
}
|
||||
|
||||
JObject& JObject::put(string key, JObject* value){
|
||||
auto found = map.find(key);
|
||||
if (found != map.end()) delete found->second;
|
||||
|
||||
Reference in New Issue
Block a user