| 75 | } |
| 76 | |
| 77 | std::string Variable::Value(bool updateLastUsed) const |
| 78 | { |
| 79 | std::lock_guard<std::mutex> lock(_mutex); |
| 80 | if (updateLastUsed) { |
| 81 | UpdateLastUsed(); |
| 82 | } |
| 83 | |
| 84 | return _value; |
| 85 | } |
| 86 | |
| 87 | std::string Variable::GetPreviousValue() const |
| 88 | { |
no outgoing calls
no test coverage detected