diff options
Diffstat (limited to 'src/core/module/GlobalModuleContext.h')
-rw-r--r-- | src/core/module/GlobalModuleContext.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/core/module/GlobalModuleContext.h b/src/core/module/GlobalModuleContext.h index e0f8e644..611926b1 100644 --- a/src/core/module/GlobalModuleContext.h +++ b/src/core/module/GlobalModuleContext.h @@ -43,13 +43,13 @@ class GlobalRegisterTable; class Module; class ModuleManager; using ModuleIdentifier = QString; -using ModulePtr = std::shared_ptr<Module>; +using ModulePtr = QSharedPointer<Module>; using ModuleRawPtr = Module*; -using GMCPtr = std::shared_ptr<GlobalModuleContext>; -using GRTPtr = std::shared_ptr<GlobalRegisterTable>; +using GMCPtr = QSharedPointer<GlobalModuleContext>; +using GRTPtr = QSharedPointer<GlobalRegisterTable>; -using TaskRunnerPtr = std::shared_ptr<Thread::TaskRunner>; +using TaskRunnerPtr = QSharedPointer<Thread::TaskRunner>; class GPGFRONTEND_CORE_EXPORT GlobalModuleContext : public QObject { Q_OBJECT |