aboutsummaryrefslogtreecommitdiffstats
path: root/src/module/GpgFrontendModuleInit.h
diff options
context:
space:
mode:
authorsaturneric <[email protected]>2023-10-17 14:57:03 +0000
committersaturneric <[email protected]>2023-10-17 14:57:03 +0000
commite5694e9f6d2a84954eaf508557caa795f5282b07 (patch)
tree40dd946005f7d5b7cdab7db608367add5bbdb38b /src/module/GpgFrontendModuleInit.h
parentrefactor: flatpak yml file can not host here (diff)
downloadGpgFrontend-e5694e9f6d2a84954eaf508557caa795f5282b07.tar.gz
GpgFrontend-e5694e9f6d2a84954eaf508557caa795f5282b07.zip
refactor: change plugin system to module system
Diffstat (limited to '')
-rw-r--r--src/module/GpgFrontendModuleInit.h (renamed from src/plugin/GpgFrontendPluginInit.h)12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/plugin/GpgFrontendPluginInit.h b/src/module/GpgFrontendModuleInit.h
index c4a48f27..47380720 100644
--- a/src/plugin/GpgFrontendPluginInit.h
+++ b/src/module/GpgFrontendModuleInit.h
@@ -29,28 +29,28 @@
#ifndef GPGFRONTEND_GPGFRONTENDPLUGININIT_H
#define GPGFRONTEND_GPGFRONTENDPLUGININIT_H
-#include "plugin/GpgFrontendPlugin.h"
+#include "module/GpgFrontendModule.h"
-namespace GpgFrontend::Plugin {
+namespace GpgFrontend::Module {
/**
* @brief init the plugin library
*
*/
-void GPGFRONTEND_PLUGIN_EXPORT LoadGpgFrontendIntegratedPlugins();
+void GPGFRONTEND_MODULE_EXPORT LoadGpgFrontendIntegratedModules();
/**
* @brief
*
*/
-void GPGFRONTEND_PLUGIN_EXPORT InitPluginLoggingSystem();
+void GPGFRONTEND_MODULE_EXPORT InitModuleLoggingSystem();
/**
* @brief
*
*/
-void GPGFRONTEND_PLUGIN_EXPORT ShutdownPluginLoggingSystem();
+void GPGFRONTEND_MODULE_EXPORT ShutdownModuleLoggingSystem();
-}; // namespace GpgFrontend::Plugin
+}; // namespace GpgFrontend::Module
#endif // GPGFRONTEND_GPGFRONTENDPLUGININIT_H