NorMIT-nav  2023.01.05-dev+develop.0da12
An IGT application
cxUsReconstructionGUIExtenderService.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 =========================================================================*/
12 
13 #include "cxPatientModelService.h"
14 
15 #include "cxReconstructionWidget.h"
16 #include "cxPatientModelService.h"
18 
19 
20 namespace cx
21 {
22 
24  mReconstructer(usReconstructionService)
25 {
26 }
27 
29 {
30 }
31 
32 std::vector<GUIExtenderService::CategorizedWidget> UsReconstructionGUIExtenderService::createWidgets() const
33 {
34  std::vector<CategorizedWidget> retval;
35 
37  new ReconstructionWidget(NULL, mReconstructer),
38  "Algorithms"));
39 
40  return retval;
41 }
42 
43 }
cxUsReconstructionService.h
cx
Namespace for all CustusX production code.
Definition: cx_dev_group_definitions.h:13
cx::UsReconstructionServicePtr
boost::shared_ptr< class UsReconstructionService > UsReconstructionServicePtr
Definition: cxAcquisitionImplService.h:24
cxReconstructionWidget.h
cxUsReconstructionGUIExtenderService.h
cx::PatientModelServicePtr
boost::shared_ptr< class PatientModelService > PatientModelServicePtr
Definition: cxLogicManager.h:25
cx::UsReconstructionGUIExtenderService::~UsReconstructionGUIExtenderService
virtual ~UsReconstructionGUIExtenderService()
Definition: cxUsReconstructionGUIExtenderService.cpp:28
cxPatientModelService.h
cx::UsReconstructionGUIExtenderService::UsReconstructionGUIExtenderService
UsReconstructionGUIExtenderService(UsReconstructionServicePtr usReconstructionService, PatientModelServicePtr patientModelService)
Definition: cxUsReconstructionGUIExtenderService.cpp:23
cx::ReconstructionWidget
Definition: cxReconstructionWidget.h:44
cx::UsReconstructionGUIExtenderService::createWidgets
std::vector< CategorizedWidget > createWidgets() const
Definition: cxUsReconstructionGUIExtenderService.cpp:32
cx::GUIExtenderService::CategorizedWidget
Definition: cxGUIExtenderService.h:44