middleware/src/Tracking/Events/SwipeEventListener.cs
changeset 0 6fefd4afe506
equal deleted inserted replaced
-1:000000000000 0:6fefd4afe506
       
     1 using System;
       
     2 using System.Collections.Generic;
       
     3 using System.Linq;
       
     4 using System.Text;
       
     5 using System.Threading;
       
     6 
       
     7 namespace Trakers.Tracking.Events
       
     8 {
       
     9     public class SwipeEventListener
       
    10     {
       
    11         /*
       
    12         * Méthode appelée lorsque on a l'événement : L'utilisateur a effectué un swipe.
       
    13         */
       
    14         public void ShowOnScreen(object o, SwipeEventArgs e)
       
    15         {
       
    16             //On l'indique dans le debug.
       
    17             e.debug.showSwipe();
       
    18             //e.debug.ExceptionLbl.Content = "SWIPE";
       
    19             //On notifie le serveur TUIO.
       
    20             //e.server.LeftHandQuit(o, e);
       
    21         }
       
    22     }
       
    23 }