diff --git a/CLC-qthing/SiliconTorch/NVSExplorer.cpp b/CLC-qthing/SiliconTorch/NVSExplorer.cpp index 86d87d36035e8a64abb30e25198445aa5b7fd92c..c021efcc63751503257b008ceaaef9fc0fbaef95 100644 --- a/CLC-qthing/SiliconTorch/NVSExplorer.cpp +++ b/CLC-qthing/SiliconTorch/NVSExplorer.cpp @@ -1030,7 +1030,7 @@ namespace SiliconTorch { } - i64 getSignedInt(const std::string& nameSpace, const std::string& key, i64 defaultValue) { + i64 NVSExplorer::getSignedInt(const std::string& nameSpace, const std::string& key, i64 defaultValue) { // Lets first test & evaluate the other function before duplication……… @@ -1038,7 +1038,7 @@ namespace SiliconTorch { } - u64 getUnsignedInt(const std::string& nameSpace, const std::string& key, u64 defaultValue) { + u64 NVSExplorer::getUnsignedInt(const std::string& nameSpace, const std::string& key, u64 defaultValue) { u64 value = defaultValue; nvs_type_t entryType = NVS_TYPE_ANY; @@ -1084,7 +1084,14 @@ namespace SiliconTorch { } - bool setUnsignedInt(const std::string& nameSpace, const std::string& key, u64 value, nvs_type_t entryType) { + bool NVSExplorer::setSignedInt(const std::string& nameSpace, const std::string& key, i64 value, nvs_type_t entryType) { + + // TODO: implementation! + + return false; + } + + bool NVSExplorer::setUnsignedInt(const std::string& nameSpace, const std::string& key, u64 value, nvs_type_t entryType) { bool result = false;