[3.0] Remove/move experimental features
[platform/core/uifw/dali-core.git] / dali / internal / update / gestures / pan-gesture-profiling.h
index 4d11824..0ab89b1 100644 (file)
  *
  */
 
-// EXTERNAL INCLUDES
-#include <vector>
-
 // INTERNAL INCLUDES
 #include <dali/public-api/math/vector2.h>
+#include <dali/public-api/common/vector-wrapper.h>
 
 namespace Dali
 {
@@ -34,13 +32,16 @@ struct PanGestureProfiling
 {
   struct Position
   {
-    Position( unsigned int time, Vector2 position )
-    : time( time ), position( position )
+    Position( unsigned int time, Vector2 position, Vector2 displacement, Vector2 velocity, int state )
+    : time( time ), position( position ), displacement( displacement ), velocity( velocity ), state( state )
     {
     }
 
     unsigned int time;
     Vector2 position;
+    Vector2 displacement;
+    Vector2 velocity;
+    int state;
   };
 
   typedef std::vector< PanGestureProfiling::Position > PanPositionContainer;