NorMIT-nav  18.04
An IGT application
cxTrainingPluginActivator.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 
18 #include "cxRegisteredService.h"
19 //#include "cxTrainingEngine.h"
20 
21 namespace cx
22 {
23 
25 {
26 // std::cout << "Created TrainingPluginActivator" << std::endl;
27 }
28 
30 {}
31 
32 void TrainingPluginActivator::start(ctkPluginContext* context)
33 {
34 // mEngine.reset(new TrainingEngine);
35 
36  TrainingGUIExtenderService* guiExtender = new TrainingGUIExtenderService(context);
37  mGUIExtender = RegisteredService::create<TrainingGUIExtenderService>(context, guiExtender, GUIExtenderService_iid);
38 }
39 
40 void TrainingPluginActivator::stop(ctkPluginContext* context)
41 {
42  mGUIExtender.reset();
43 // mEngine.reset();
44  Q_UNUSED(context);
45 }
46 
47 } // namespace cx
void stop(ctkPluginContext *context)
void start(ctkPluginContext *context)
#define GUIExtenderService_iid
Namespace for all CustusX production code.