[3.0] Update doxygen tags
[platform/core/uifw/dali-core.git] / dali / public-api / events / tap-gesture.h
index a448499..0107205 100644 (file)
 
 namespace Dali
 {
+/**
+ * @addtogroup dali_core_events
+ * @{
+ */
 
 /**
  * @brief A TapGesture is emitted when the user taps the screen with the stated number of fingers a stated number of times.
  *
  * This is a discrete gesture so does not have any state information.
+ * @SINCE_1_0.0
  * @see TapGestureDetector
  */
 struct DALI_IMPORT_API TapGesture : public Gesture
@@ -37,21 +42,28 @@ struct DALI_IMPORT_API TapGesture : public Gesture
 
   /**
    * @brief Default Constructor
+   * @SINCE_1_0.0
    */
   TapGesture();
 
   /**
    * @brief Copy constructor
+   * @SINCE_1_0.0
+   * @param[in] rhs A reference to the copied handle
    */
   TapGesture( const TapGesture& rhs );
 
   /**
    * @brief Assignment operator
+   * @SINCE_1_0.0
+   * @param[in] rhs A reference to the copied handle
+   * @return A reference to this
    */
   TapGesture& operator=( const TapGesture& rhs );
 
   /**
    * @brief Virtual destructor
+   * @SINCE_1_0.0
    */
   virtual ~TapGesture();
 
@@ -84,6 +96,9 @@ struct DALI_IMPORT_API TapGesture : public Gesture
   Vector2 localPoint;
 };
 
+/**
+ * @}
+ */
 } // namespace Dali
 
 #endif // __DALI_TAP_GESTURE_H__