GUIFramework 1.1.0
Framework for desktop GUI applications in C++.
Loading...
Searching...
No Matches
SeparateWindowAdditionalCreationData.cpp
Go to the documentation of this file.
2
3using namespace std;
4
5namespace gui_framework
6{
7 namespace utility
8 {
9 AdditionalCreationData<SeparateWindow>::AdditionalCreationData(const wstring& className, const string& functionName) :
10 className(className),
11 functionName(functionName)
12 {
13
14 }
15
17 {
18 return make_any<tuple<wstring, string>>(className, functionName);
19 }
20 }
21}
Base templated class for component creators.