comparison OrthancStone/Sources/Scene2DViewport/IFlexiblePointerTracker.h @ 1559:97b34cb88600

removing IPointerTracker.h and CreateSimpleTrackerAdapter.cpp
author Sebastien Jodogne <s.jodogne@gmail.com>
date Thu, 20 Aug 2020 11:57:41 +0200
parents 244ad1e4e76a
children 4fb8fdf03314
comparison
equal deleted inserted replaced
1558:314b6dc507d9 1559:97b34cb88600
75 its changes to the underlying model. If the model has been modified during 75 its changes to the underlying model. If the model has been modified during
76 tracker lifetime, it must be restored to its initial value 76 tracker lifetime, it must be restored to its initial value
77 */ 77 */
78 virtual void Cancel() = 0; 78 virtual void Cancel() = 0;
79 }; 79 };
80
81
82 /**
83 This factory adopts the supplied simple tracker and creates a flexible
84 tracker wrapper around it.
85 */
86 boost::shared_ptr<IFlexiblePointerTracker> CreateSimpleTrackerAdapter(boost::shared_ptr<IPointerTracker>);
87 } 80 }
88