comparison Framework/Viewport/IMouseTracker.h @ 596:b716763571ad

IPointerTracker
author Sebastien Jodogne <s.jodogne@gmail.com>
date Fri, 26 Apr 2019 17:05:14 +0200
parents 3b4df9925db6
children 4f2416d519b4
comparison
equal deleted inserted replaced
595:6e471e6cf09b 596:b716763571ad
60 60
61 // Returns "true" iff. the background scene must be repainted 61 // Returns "true" iff. the background scene must be repainted
62 virtual void MouseMove(int x, 62 virtual void MouseMove(int x,
63 int y, 63 int y,
64 const std::vector<Touch>& displayTouches) = 0; 64 const std::vector<Touch>& displayTouches) = 0;
65
66 virtual bool IsTouchTracker() const {return false;}
67 }; 65 };
68 } 66 }