comparison OrthancStone/Sources/Scene2DViewport/CreateLineMeasureCommand.h @ 1606:874e178f34e9

- ViewportController now has weak ptr to Viewport - Measuring tools + related commands and all trackers now store only a weak_ptr to the Viewport and lock() on demand for usage - LayerHolder and FixedPoint aligner store only a weak_ptr to the Viewport, too - Fixed float/double warning in GrayscaleWindowingSceneTracker
author Benjamin Golinvaux <bgo@osimis.io>
date Wed, 28 Oct 2020 20:14:34 +0100
parents 8563ea5d8ae4
children 9ac2a65d4172
comparison
equal deleted inserted replaced
1605:b3c439d96d3e 1606:874e178f34e9
26 { 26 {
27 class CreateLineMeasureCommand : public CreateMeasureCommand 27 class CreateLineMeasureCommand : public CreateMeasureCommand
28 { 28 {
29 public: 29 public:
30 CreateLineMeasureCommand( 30 CreateLineMeasureCommand(
31 boost::shared_ptr<IViewport> viewport, 31 boost::weak_ptr<IViewport> viewport,
32 ScenePoint2D point); 32 ScenePoint2D point);
33 33
34 // the starting position is set in the ctor 34 // the starting position is set in the ctor
35 void SetEnd(ScenePoint2D scenePos); 35 void SetEnd(ScenePoint2D scenePos);
36 36