dirtyvalue: Move to src/utility

This commit is contained in:
Finlay Davidson
2023-03-16 22:08:51 +01:00
committed by Riku Isokoski
parent 47931f41d5
commit 616aa91b4c
9 changed files with 103 additions and 92 deletions

39
src/utility/DirtyValue.h Normal file
View File

@@ -0,0 +1,39 @@
#pragma once
namespace Pinetime {
namespace Utility {
template <class T>
class DirtyValue {
public:
DirtyValue() = default; // Use NSDMI
explicit DirtyValue(T const& v) : value {v} {
} // Use MIL and const-lvalue-ref
bool IsUpdated() {
if (this->isUpdated) {
this->isUpdated = false;
return true;
}
return false;
}
T const& Get() {
this->isUpdated = false;
return value;
} // never expose a non-const lvalue-ref
DirtyValue& operator=(const T& other) {
if (this->value != other) {
this->value = other;
this->isUpdated = true;
}
return *this;
}
private:
T value {}; // NSDMI - default initialise type
bool isUpdated {true}; // NSDMI - use brace initialisation
};
}
}