aboutsummaryrefslogtreecommitdiffstats
path: root/src/core/module/ModuleManager.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/core/module/ModuleManager.cpp')
-rw-r--r--src/core/module/ModuleManager.cpp13
1 files changed, 7 insertions, 6 deletions
diff --git a/src/core/module/ModuleManager.cpp b/src/core/module/ModuleManager.cpp
index 4a78a85b..ba24ec7a 100644
--- a/src/core/module/ModuleManager.cpp
+++ b/src/core/module/ModuleManager.cpp
@@ -89,8 +89,8 @@ class ModuleManager::Impl {
return grt_->LookupKV(n, k);
}
- bool ListenPublish(QObject* o, Namespace n, Key k, LPCallback c) {
- return grt_->ListenPublish(o, n, k, c);
+ bool ListenPublish(QObject* o, Namespace n, Key k, LPCallback c, bool c_o) {
+ return grt_->ListenPublish(o, n, k, c, c_o);
}
private:
@@ -107,8 +107,9 @@ bool UpsertRTValue(const std::string& namespace_, const std::string& key,
}
bool GPGFRONTEND_CORE_EXPORT ListenRTPublishEvent(QObject* o, Namespace n,
- Key k, LPCallback c) {
- return ModuleManager::GetInstance()->ListenRTPublish(o, n, k, c);
+ Key k, LPCallback c,
+ bool c_o) {
+ return ModuleManager::GetInstance()->ListenRTPublish(o, n, k, c, c_o);
}
ModuleManager::ModuleManager() : p_(std::make_unique<Impl>()) {}
@@ -146,8 +147,8 @@ std::optional<std::any> ModuleManager::RetrieveRTValue(Namespace n, Key k) {
}
bool ModuleManager::ListenRTPublish(QObject* o, Namespace n, Key k,
- LPCallback c) {
- return p_->ListenPublish(o, n, k, c);
+ LPCallback c, bool c_o) {
+ return p_->ListenPublish(o, n, k, c, c_o);
}
ModuleIdentifier GetRealModuleIdentifier(const ModuleIdentifier& id) {