Replaces getKeyWithCollection with getName on VariableValue

This commit is contained in:
Felipe Zimmerle
2020-08-25 12:52:04 -03:00
committed by Felipe Zimmerle
parent ae74d37f96
commit 1eedf3e898
7 changed files with 21 additions and 20 deletions

View File

@@ -74,26 +74,27 @@ class VariableValue {
}
}
const std::string& getKey() const {
return m_key;
}
const std::string& getKeyWithCollection() const {
const std::string& getName() const noexcept {
return m_keyWithCollection;
}
const std::string& getCollection() const {
return m_collection;
}
const std::string& getValue() const {
const std::string& getValue() const noexcept {
return m_value;
}
const std::string& getKey() const {
return m_key;
}
const std::string& getCollection() const {
return m_collection;
}
void setValue(const std::string &value) {
m_value = value;
}