diff options
| author | JF <jf@codingfield.com> | 2021-03-21 17:15:07 (GMT) |
|---|---|---|
| committer | Gitea <gitea@fake.local> | 2021-03-21 17:15:07 (GMT) |
| commit | 24d3eea4fba05d774ace794eb8c9b21b8f2aa8c6 (patch) | |
| tree | 500b57847eb84f73fa62e7500e5a24d1a6d2f4cb /src/displayapp/screens/Screen.h | |
| parent | 5cd4b36d6bbf22095e0ff54aa3773febc6e1f22e (diff) | |
| parent | 9f9d0eb5df8ff86b9cd1e095afa3159094dde53c (diff) | |
Merge branch 'develop' of JF/PineTime into master
Diffstat (limited to 'src/displayapp/screens/Screen.h')
| -rw-r--r-- | src/displayapp/screens/Screen.h | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/src/displayapp/screens/Screen.h b/src/displayapp/screens/Screen.h index 6b1d0ee..638dac9 100644 --- a/src/displayapp/screens/Screen.h +++ b/src/displayapp/screens/Screen.h @@ -7,6 +7,26 @@ namespace Pinetime { namespace Applications { 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() const { return isUpdated; } + 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 initilisation + }; + class Screen { public: explicit Screen(DisplayApp* app) : app{app} {} |
