Purge underscored header file barriers
[platform/core/uifw/dali-core.git] / dali / internal / update / gestures / pan-gesture-profiling.h
index 2ded72a..1b01aa2 100644 (file)
@@ -1,8 +1,8 @@
-#ifndef __DALI_INTERNAL_PAN_GESTURE_PROFILING_H__
-#define __DALI_INTERNAL_PAN_GESTURE_PROFILING_H__
+#ifndef DALI_INTERNAL_PAN_GESTURE_PROFILING_H
+#define DALI_INTERNAL_PAN_GESTURE_PROFILING_H
 
 /*
- * Copyright (c) 2014 Samsung Electronics Co., Ltd.
+ * Copyright (c) 2019 Samsung Electronics Co., Ltd.
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
@@ -32,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;
@@ -59,4 +62,4 @@ struct PanGestureProfiling
 
 } // namespace Dali
 
-#endif // __DALI_INTERNAL_PAN_GESTURE_PROFILING_H__
+#endif // DALI_INTERNAL_PAN_GESTURE_PROFILING_H