diff options
| author | crupest <crupest@outlook.com> | 2020-12-02 19:38:25 +0800 | 
|---|---|---|
| committer | crupest <crupest@outlook.com> | 2020-12-02 19:38:25 +0800 | 
| commit | d7dca1be0dd0814e30fa63924a20af3d924e974c (patch) | |
| tree | 0a5ea0b637dc8392eee67ec625a51cef09ec8731 /include/cru/ui/style/Styler.hpp | |
| parent | 145cfd5b82d76e0c937eceda707aa22427899943 (diff) | |
| download | cru-d7dca1be0dd0814e30fa63924a20af3d924e974c.tar.gz cru-d7dca1be0dd0814e30fa63924a20af3d924e974c.tar.bz2 cru-d7dca1be0dd0814e30fa63924a20af3d924e974c.zip  | |
...
Diffstat (limited to 'include/cru/ui/style/Styler.hpp')
| -rw-r--r-- | include/cru/ui/style/Styler.hpp | 13 | 
1 files changed, 13 insertions, 0 deletions
diff --git a/include/cru/ui/style/Styler.hpp b/include/cru/ui/style/Styler.hpp index e69de29b..0b48f1ce 100644 --- a/include/cru/ui/style/Styler.hpp +++ b/include/cru/ui/style/Styler.hpp @@ -0,0 +1,13 @@ +#pragma once +#include "../Base.hpp" +#include "cru/common/Base.hpp" + +#include <optional> + +namespace cru::ui::style { +class Styler : public Object { + public: +  virtual void Apply(controls::Control* control) const; +}; + +}  // namespace cru::ui::style  | 
