aboutsummaryrefslogtreecommitdiffstats
path: root/src/core/module/ModuleManager.h
diff options
context:
space:
mode:
authorsaturneric <[email protected]>2024-04-14 12:56:18 +0000
committersaturneric <[email protected]>2024-04-14 12:56:18 +0000
commitcb2672ca430c54244df7bd46ef97256c3d840cbf (patch)
treea54bb28d61cf9dbf608261782c4f3febec72ea8c /src/core/module/ModuleManager.h
parentfix: use qt designer placeholder instead of custom initialized (diff)
downloadGpgFrontend-cb2672ca430c54244df7bd46ef97256c3d840cbf.tar.gz
GpgFrontend-cb2672ca430c54244df7bd46ef97256c3d840cbf.zip
feat: add a grt viewer and solve some issues in gnupg info tab
Diffstat (limited to 'src/core/module/ModuleManager.h')
-rw-r--r--src/core/module/ModuleManager.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/core/module/ModuleManager.h b/src/core/module/ModuleManager.h
index d5cd8387..fa8d2264 100644
--- a/src/core/module/ModuleManager.h
+++ b/src/core/module/ModuleManager.h
@@ -48,6 +48,7 @@ class Event;
class Module;
class GlobalModuleContext;
class ModuleManager;
+class GlobalRegisterTable;
using EventRefrernce = std::shared_ptr<Event>;
using ModuleIdentifier = QString;
@@ -97,6 +98,8 @@ class GPGFRONTEND_CORE_EXPORT ModuleManager
auto ListRTChildKeys(const QString&, const QString&) -> std::vector<Key>;
+ auto GRT() -> GlobalRegisterTable*;
+
private:
class Impl;
SecureUniquePtr<Impl> p_;