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