GUIFramework 1.1.0
Framework for desktop GUI applications in C++.
Loading...
Searching...
No Matches
AdditionalCreationData.h
Go to the documentation of this file.
1#pragma once
2
4
5namespace gui_framework
6{
7 namespace utility
8 {
10 template<std::derived_from<BaseComponent> T>
12 {
13 public:
15
16 virtual std::any getData() const;
17
18 virtual ~AdditionalCreationData() = default;
19 };
20
21 template<std::derived_from<BaseComponent> T>
23 {
24 return std::any();
25 }
26 }
27}
#define GUI_FRAMEWORK_API
Base templated class for component creators.