Fraxinus  18.10
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 
#define PatientModelService_iid
#define SessionStorageService_iid
Namespace for all CustusX production code.