CustusX  2023.01.05-dev+develop.0da12
An IGT application
cxHelpPluginActivator.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 
12 #include "cxHelpPluginActivator.h"
13 
14 #include <QtPlugin>
15 #include <iostream>
16 
18 #include "cxRegisteredService.h"
19 #include "cxHelpEngine.h"
20 
21 namespace cx
22 {
23 
25 {
26 // std::cout << "Created HelpPluginActivator" << std::endl;
27 }
28 
30 {}
31 
32 void HelpPluginActivator::start(ctkPluginContext* context)
33 {
34  mEngine.reset(new HelpEngine);
35 
36  HelpGUIExtenderService* guiExtender = new HelpGUIExtenderService(context, mEngine);
37  mGUIExtender = RegisteredService::create<HelpGUIExtenderService>(context, guiExtender, GUIExtenderService_iid);
38 }
39 
40 void HelpPluginActivator::stop(ctkPluginContext* context)
41 {
42  mGUIExtender.reset();
43  mEngine.reset();
44  Q_UNUSED(context);
45 }
46 
47 } // namespace cx
48 
49 
50 
void start(ctkPluginContext *context)
#define GUIExtenderService_iid
void stop(ctkPluginContext *context)
Namespace for all CustusX production code.