GUIFramework 1.1.0
Framework for desktop GUI applications in C++.
Loading...
Searching...
No Matches
InfiniteProgressBarParser.cpp
Go to the documentation of this file.
2
3using namespace std;
4
5namespace gui_framework
6{
7 namespace parsers
8 {
9 void InfiniteProgressBarParser::parse(const json::utility::jsonObject& description)
10 {
11 BaseComponentParser::parse(description);
12
13 animationPeriod = static_cast<int>(description.getInt("animationPeriod"));
14 }
15 }
16}
virtual void parse(const json::utility::jsonObject &description)
void parse(const json::utility::jsonObject &description) override