Fraxinus  18.10
An IGT application
cxVBPluginActivator.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 "cxVBPluginActivator.h"
13 
14 #include <QtPlugin>
15 #include <iostream>
16 
17 #include "cxVBService.h"
18 #include "cxRegisteredService.h"
19 #include "cxVisServices.h"
20 
21 namespace cx
22 {
23 
25 {
26 }
27 
29 {
30 }
31 
32 void VBPluginActivator::start(ctkPluginContext* context)
33 {
34  VisServicesPtr services = VisServices::create(context);
35  mVBregistration = RegisteredServicePtr(new RegisteredService(context, new VBGUIExtenderService(services), GUIExtenderService_iid));
36 }
37 
38 void VBPluginActivator::stop(ctkPluginContext* context)
39 {
40  mVBregistration.reset();
41  Q_UNUSED(context);
42 }
43 
44 } // namespace cx
void start(ctkPluginContext *context)
boost::shared_ptr< class VisServices > VisServicesPtr
Definition: cxMainWindow.h:40
static VisServicesPtr create(ctkPluginContext *context)
boost::shared_ptr< class RegisteredService > RegisteredServicePtr
void stop(ctkPluginContext *context)
#define GUIExtenderService_iid
Namespace for all CustusX production code.