dirtyvalue: Move to src/utility
This commit is contained in:
committed by
Riku Isokoski
parent
47931f41d5
commit
616aa91b4c
@@ -9,41 +9,6 @@ namespace Pinetime {
|
||||
class DisplayApp;
|
||||
|
||||
namespace Screens {
|
||||
|
||||
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
|
||||
};
|
||||
|
||||
class Screen {
|
||||
private:
|
||||
virtual void Refresh() {
|
||||
|
||||
Reference in New Issue
Block a user