diff -r 000000000000 -r 6fefd4afe506 middleware/src/Tracking/Events/SwipeEventListener.cs --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/middleware/src/Tracking/Events/SwipeEventListener.cs Fri Mar 09 14:52:11 2012 +0100 @@ -0,0 +1,23 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading; + +namespace Trakers.Tracking.Events +{ + public class SwipeEventListener + { + /* + * Méthode appelée lorsque on a l'événement : L'utilisateur a effectué un swipe. + */ + public void ShowOnScreen(object o, SwipeEventArgs e) + { + //On l'indique dans le debug. + e.debug.showSwipe(); + //e.debug.ExceptionLbl.Content = "SWIPE"; + //On notifie le serveur TUIO. + //e.server.LeftHandQuit(o, e); + } + } +}