NorMIT-nav  2023.01.05-dev+develop.0da12
An IGT application
cxPatientModelPluginActivator.cpp
Go to the documentation of this file.
1 /*=========================================================================
2 This file is part of CustusX, an Image Guided Therapy Application.
3 
4 Copyright (c) SINTEF Department of Medical Technology.
5 All rights reserved.
6 
7 CustusX is released under a BSD 3-Clause license.
8 
9 See Lisence.txt (https://github.com/SINTEFMedtek/CustusX/blob/master/License.txt) for details.
10 =========================================================================*/
11 
13 
14 #include <QtPlugin>
15 #include <iostream>
16 
19 #include "cxRegisteredService.h"
20 
21 namespace cx
22 {
23 
25 {
26 }
27 
29 {
30 }
31 
32 void PatientModelPluginActivator::start(ctkPluginContext* context)
33 {
34  mSessionStorage = RegisteredService::create<SessionStorageServiceImpl>(context, SessionStorageService_iid);
35  mPatientModel = RegisteredService::create<PatientModelImplService>(context, PatientModelService_iid);
36 }
37 
38 void PatientModelPluginActivator::stop(ctkPluginContext* context)
39 {
40  mPatientModel.reset();
41  mSessionStorage.reset();
42  Q_UNUSED(context);
43 }
44 
45 } // namespace cx
46 
47 
48 
cx
Namespace for all CustusX production code.
Definition: cx_dev_group_definitions.h:13
cx::PatientModelPluginActivator::stop
void stop(ctkPluginContext *context)
Definition: cxPatientModelPluginActivator.cpp:38
cx::PatientModelPluginActivator::PatientModelPluginActivator
PatientModelPluginActivator()
Definition: cxPatientModelPluginActivator.cpp:24
cx::PatientModelPluginActivator::start
void start(ctkPluginContext *context)
Definition: cxPatientModelPluginActivator.cpp:32
cxSessionStorageServiceImpl.h
cxPatientModelPluginActivator.h
SessionStorageService_iid
#define SessionStorageService_iid
Definition: cxSessionStorageService.h:24
PatientModelService_iid
#define PatientModelService_iid
Definition: cxPatientModelService.h:34
cx::PatientModelPluginActivator::~PatientModelPluginActivator
~PatientModelPluginActivator()
Definition: cxPatientModelPluginActivator.cpp:28
cxRegisteredService.h
cxPatientModelImplService.h