diff options
author | saturneric <[email protected]> | 2024-03-02 18:48:44 +0000 |
---|---|---|
committer | saturneric <[email protected]> | 2024-03-02 18:48:44 +0000 |
commit | 154ebea202d64669143ee6bb33f6327d141343c3 (patch) | |
tree | 3d9a6e5cac15f6575a4c1994ba8fd3d8607bfa65 /src/core/function | |
parent | refactor: remove qt6 core5compat dependencies (diff) | |
download | GpgFrontend-154ebea202d64669143ee6bb33f6327d141343c3.tar.gz GpgFrontend-154ebea202d64669143ee6bb33f6327d141343c3.zip |
refactor: reduce core prebuild headers and isolate core to modules
Diffstat (limited to 'src/core/function')
-rw-r--r-- | src/core/function/CoreSignalStation.h | 2 | ||||
-rw-r--r-- | src/core/function/SecureMemoryAllocator.h | 4 | ||||
-rw-r--r-- | src/core/function/gpg/GpgContext.h | 2 |
3 files changed, 4 insertions, 4 deletions
diff --git a/src/core/function/CoreSignalStation.h b/src/core/function/CoreSignalStation.h index e0a11fa3..8827c803 100644 --- a/src/core/function/CoreSignalStation.h +++ b/src/core/function/CoreSignalStation.h @@ -28,7 +28,7 @@ #pragma once -#include "core/GpgFrontendCore.h" +#include "core/GpgFrontendCoreExport.h" namespace GpgFrontend { diff --git a/src/core/function/SecureMemoryAllocator.h b/src/core/function/SecureMemoryAllocator.h index e9f1c1c3..e86d54d6 100644 --- a/src/core/function/SecureMemoryAllocator.h +++ b/src/core/function/SecureMemoryAllocator.h @@ -28,9 +28,7 @@ #pragma once -#include <cstdint> -#include <memory> - +#include "core/GpgFrontendCoreExport.h" #include "core/utils/LogUtils.h" namespace GpgFrontend { diff --git a/src/core/function/gpg/GpgContext.h b/src/core/function/gpg/GpgContext.h index d473a341..2a8f6fdd 100644 --- a/src/core/function/gpg/GpgContext.h +++ b/src/core/function/gpg/GpgContext.h @@ -28,6 +28,8 @@ #pragma once +#include <gpgme.h> + #include "core/function/SecureMemoryAllocator.h" #include "core/function/basic/GpgFunctionObject.h" |