GUIFramework 1.1.0
Framework for desktop GUI applications in C++.
Loading...
Searching...
No Matches
ProgressBarAdditionalCreationData.cpp
Go to the documentation of this file.
2
3using namespace std;
4
5namespace gui_framework
6{
7 namespace utility
8 {
9 AdditionalCreationData<ProgressBar>::AdditionalCreationData(int minRange, int maxRange, int updateStep) :
10 minRange(minRange),
11 maxRange(maxRange),
12 updateStep(updateStep)
13 {
14
15 }
16
18 {
19 return make_any<tuple<int, int, int>>(minRange, maxRange, updateStep);
20 }
21
23 animationPeriod(animationPeriod)
24 {
25
26 }
27
29 {
30 return make_any<int>(animationPeriod);
31 }
32 }
33}