NorMIT-nav  2023.01.05-dev+develop.0da12
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
cx
Namespace for all CustusX production code.
Definition: cx_dev_group_definitions.h:13
cx::RegisteredServicePtr
boost::shared_ptr< class RegisteredService > RegisteredServicePtr
Definition: cxAcquisitionServicePluginActivator.h:31
cx::VisServicesPtr
boost::shared_ptr< class VisServices > VisServicesPtr
Definition: cxMainWindow.h:40
cx::VBPluginActivator::VBPluginActivator
VBPluginActivator()
Definition: cxVBPluginActivator.cpp:24
cxVBPluginActivator.h
cx::VBGUIExtenderService
Definition: cxVBService.h:31
cx::VBPluginActivator::start
void start(ctkPluginContext *context)
Definition: cxVBPluginActivator.cpp:32
cx::VBPluginActivator::stop
void stop(ctkPluginContext *context)
Definition: cxVBPluginActivator.cpp:38
cxVBService.h
cx::VBPluginActivator::~VBPluginActivator
~VBPluginActivator()
Definition: cxVBPluginActivator.cpp:28
cx::VisServices::create
static VisServicesPtr create(ctkPluginContext *context)
Definition: cxVisServices.cpp:17
cx::RegisteredService
Definition: cxRegisteredService.h:35
cxRegisteredService.h
GUIExtenderService_iid
#define GUIExtenderService_iid
Definition: cxGUIExtenderService.h:23
cxVisServices.h