Merge branch 'develop' into meier/pdec-config-persistent

This commit is contained in:
Jakob Meier
2023-02-21 15:34:16 +01:00
221 changed files with 11565 additions and 5368 deletions

View File

@ -14,6 +14,12 @@ class NVMParameterBase {
NVMParameterBase(std::string fullName);
/**
* @brief Use this constructor when name of json file shall be set on an later
* point
*/
NVMParameterBase();
bool getJsonFileExists();
/**
@ -48,7 +54,7 @@ class NVMParameterBase {
nlohmann::json json;
std::vector<std::string> keys;
std::string fullName;
std::string fullName = "";
};
template <typename T>