GUIFramework 1.1.0
Framework for desktop GUI applications in C++.
Loading...
Searching...
No Matches
ChildWindowAdditionalCreationData.h
Go to the documentation of this file.
1#pragma once
2
5
6namespace gui_framework
7{
8 namespace utility
9 {
11 template<>
13 {
14 protected:
15 std::wstring className;
16 std::string functionName;
17
18 public:
20
21 AdditionalCreationData(const std::wstring& className, const std::string& functionName = "");
22
23 virtual std::any getData() const;
24
25 virtual ~AdditionalCreationData() = default;
26 };
27 }
28}
#define GUI_FRAMEWORK_API
Standard child window.
Definition ChildWindow.h:12
AdditionalCreationData(const std::wstring &className, const std::string &functionName="")
Base templated class for component creators.