diff options
author | saturneric <[email protected]> | 2025-05-01 14:39:10 +0000 |
---|---|---|
committer | saturneric <[email protected]> | 2025-05-01 14:39:10 +0000 |
commit | c48a85cc0bcd6dd79e177d42ec27d7cc8262fd2d (patch) | |
tree | 45f3f09ccf9f38975881e4ce49901c0ae42ae3cc /src/core/module/Event.h | |
parent | fix: icon on linux platfrom (diff) | |
download | GpgFrontend-c48a85cc0bcd6dd79e177d42ec27d7cc8262fd2d.tar.gz GpgFrontend-c48a85cc0bcd6dd79e177d42ec27d7cc8262fd2d.zip |
refactor: add cmake functions to register module and library
Diffstat (limited to 'src/core/module/Event.h')
-rw-r--r-- | src/core/module/Event.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/core/module/Event.h b/src/core/module/Event.h index a6660266..17c08d84 100644 --- a/src/core/module/Event.h +++ b/src/core/module/Event.h @@ -34,7 +34,8 @@ #include "core/GpgFrontendCore.h" #include "core/model/DataObject.h" -#include "sdk/GFSDKModule.h" + +struct GFModuleEvent; namespace GpgFrontend::Module { @@ -45,7 +46,7 @@ using EventIdentifier = QString; using EventTriggerIdentifier = QString; using Evnets = QContainer<Event>; -class GPGFRONTEND_CORE_EXPORT Event { +class GF_CORE_EXPORT Event { public: using ParameterValue = std::any; using EventIdentifier = QString; |