comparison Applications/Samples/Common/RtViewerView.h @ 1640:52b8b96cb55f

cleaning namespaces
author Sebastien Jodogne <s.jodogne@gmail.com>
date Tue, 10 Nov 2020 16:55:22 +0100
parents 4c9e68291467
children 9ac2a65d4172
comparison
equal deleted inserted replaced
1639:5cdc5b98f14d 1640:52b8b96cb55f
133 133
134 private: 134 private:
135 boost::weak_ptr<RtViewerApp> app_; 135 boost::weak_ptr<RtViewerApp> app_;
136 boost::shared_ptr<VolumeSceneLayerSource> ctVolumeLayerSource_, doseVolumeLayerSource_, structLayerSource_; 136 boost::shared_ptr<VolumeSceneLayerSource> ctVolumeLayerSource_, doseVolumeLayerSource_, structLayerSource_;
137 137
138 // collection of cutting planes for this particular view 138 // collection of cutting planes for this particular view
139 std::vector<OrthancStone::CoordinateSystem3D> planes_; 139 std::vector<CoordinateSystem3D> planes_;
140 size_t currentPlane_; 140 size_t currentPlane_;
141 141 VolumeProjection projection_;
142 VolumeProjection projection_; 142 std::map<std::string, std::string> infoTextMap_;
143
144 std::map<std::string, std::string> infoTextMap_;
145 143
146 int FLOATING_INFOTEXT_LAYER_ZINDEX; 144 int FLOATING_INFOTEXT_LAYER_ZINDEX;
147 int FIXED_INFOTEXT_LAYER_ZINDEX; 145 int FIXED_INFOTEXT_LAYER_ZINDEX;
148 boost::shared_ptr<IViewport> viewport_; 146 boost::shared_ptr<IViewport> viewport_;
149 147