[Tizen] Add Integration API to Create public event type
[platform/core/uifw/dali-core.git] / dali / integration-api / events / touch-integ.h
index 3f48898..ae96fe9 100644 (file)
@@ -21,6 +21,7 @@
 #include <dali/public-api/common/dali-common.h>
 #include <dali/public-api/events/touch-event.h>
 #include <dali/devel-api/events/touch-point.h>
+#include <dali/integration-api/events/point.h>
 
 namespace Dali
 {
@@ -31,11 +32,20 @@ namespace Integration
 /**
  * Create a new touch data handle from timestamp and touch point.
  *
- * @param[in] timestamp The timestamp of the touch event.
+ * @param[in] timeStamp The time stamp of the touch event.
  * @param[in] point The point on screen where the touch occurred.
  * @return A new touch data handle.
  */
-DALI_CORE_API Dali::TouchEvent NewTouchEvent(uint32_t timestamp, const TouchPoint& point);
+DALI_CORE_API Dali::TouchEvent NewTouchEvent(uint32_t timeStamp, const TouchPoint& point);
+
+/**
+ * Create a new touch data handle from timestamp and point.
+ *
+ * @param[in] timeStamp The time stamp of the touch event.
+ * @param[in] point The point on screen where the touch occurred.
+ * @return A new touch data handle.
+ */
+DALI_CORE_API Dali::TouchEvent NewTouchEvent( uint32_t timeStamp, const Dali::Integration::Point& point );
 
 } // namespace Integration