comparison Framework/Scene2D/IPointerTracker.h @ 644:f939f449482c

Ongoing tracker work.
author Benjamin Golinvaux <bgo@osimis.io>
date Fri, 10 May 2019 16:15:55 +0200
parents 500c3f70b6c2
children 059e1fd05fd6
comparison
equal deleted inserted replaced
634:6a144a45b2d8 644:f939f449482c
36 This method will be repeatedly called during user interaction 36 This method will be repeatedly called during user interaction
37 */ 37 */
38 virtual void Update(const PointerEvent& event) = 0; 38 virtual void Update(const PointerEvent& event) = 0;
39 39
40 /** 40 /**
41 This method will be called if the tracker is to be abandoned without 41 This method will be called when the tracker should commit its result
42 committing its result 42 before being destroyed.
43 */ 43 */
44 virtual void Release() = 0; 44 virtual void Release() = 0;
45 }; 45 };
46 } 46 }