bugfixes in pdec handler parameter commands
This commit is contained in:
@ -31,7 +31,7 @@ class NVMParameterBase {
|
||||
|
||||
virtual ReturnValue_t writeJsonFile();
|
||||
|
||||
void setFullName(std::string fullName);
|
||||
virtual void setFullName(std::string fullName);
|
||||
std::string getFullName() const;
|
||||
|
||||
template <typename T>
|
||||
@ -69,7 +69,7 @@ inline ReturnValue_t NVMParameterBase::insertValue(std::string key, T value) {
|
||||
|
||||
template <typename T>
|
||||
inline ReturnValue_t NVMParameterBase::setValue(std::string key, T value) {
|
||||
json[key] = value;
|
||||
json[key] = value;
|
||||
return returnvalue::OK;
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user