GUIFramework 1.1.0
Framework for desktop GUI applications in C++.
Loading...
Searching...
No Matches
IconListViewAdditionalCreationData.cpp
Go to the documentation of this file.
2
3using namespace std;
4
5namespace gui_framework
6{
7 namespace utility
8 {
9 AdditionalCreationData<IconListView>::AdditionalCreationData(utility::iconListViewType type, const vector<filesystem::path>& pathToIcons) :
10 type(type),
11 pathToIcons(pathToIcons)
12 {
13
14 }
15
17 {
18 return make_any<tuple<iconListViewType, vector<filesystem::path>>>(type, pathToIcons);
19 }
20
22 type(type),
23 pathToIcons(pathToIcons)
24 {
25
26 }
27
29 {
30 return make_any<tuple<iconListViewType, vector<filesystem::path>>>(type, pathToIcons);
31 }
32 }
33}
Base templated class for component creators.