comparison Applications/Samples/Common/RtViewerApp.cpp @ 1574:fb5e620430ae

fix
author Sebastien Jodogne <s.jodogne@gmail.com>
date Mon, 21 Sep 2020 18:29:53 +0200
parents 32e0c007789d
children 9ac2a65d4172
comparison
equal deleted inserted replaced
1573:32e0c007789d 1574:fb5e620430ae
73 const VolumeImageGeometry& geometry = geometryProvider_->GetImageGeometry(); 73 const VolumeImageGeometry& geometry = geometryProvider_->GetImageGeometry();
74 return geometry; 74 return geometry;
75 } 75 }
76 76
77 RtViewerApp::RtViewerApp() : 77 RtViewerApp::RtViewerApp() :
78 undoStack_(new UndoStack),
79 // Create the volumes that will be filled later on 78 // Create the volumes that will be filled later on
80 ctVolume_(boost::make_shared<DicomVolumeImage>()), 79 ctVolume_(boost::make_shared<DicomVolumeImage>()),
81 doseVolume_(boost::make_shared<DicomVolumeImage>()) 80 doseVolume_(boost::make_shared<DicomVolumeImage>()),
81 undoStack_(new UndoStack)
82 { 82 {
83 } 83 }
84 84
85 boost::shared_ptr<RtViewerApp> RtViewerApp::Create() 85 boost::shared_ptr<RtViewerApp> RtViewerApp::Create()
86 { 86 {