GUIFramework 1.1.0
Framework for desktop GUI applications in C++.
Loading...
Searching...
No Matches
BaseComponentParser.h
Go to the documentation of this file.
1#pragma once
2
4
5namespace gui_framework
6{
7 namespace parsers
8 {
11 {
12 std::wstring className;
14 std::array<uint8_t, 3> backgroundColor;
15 std::array<uint8_t, 3> textColor;
16
17 public:
19
20 virtual void parse(const json::utility::jsonObject& description);
21
22 virtual ~BaseComponentParser() = default;
23 };
24 }
25}
#define GUI_FRAMEWORK_API