[3.0] Update doxygen comments
[platform/core/uifw/dali-core.git] / dali / public-api / events / tap-gesture.h
index 5b6a231..16982e2 100644 (file)
@@ -33,6 +33,7 @@ namespace Dali
  * @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
@@ -40,22 +41,29 @@ struct DALI_IMPORT_API TapGesture : public Gesture
   // Construction & Destruction
 
   /**
-   * @brief Default Constructor
+   * @brief Default Constructor.
+   * @SINCE_1_0.0
    */
   TapGesture();
 
   /**
-   * @brief Copy constructor
+   * @brief Copy constructor.
+   * @SINCE_1_0.0
+   * @param rhs A reference to the copied handle
    */
   TapGesture( const TapGesture& rhs );
 
   /**
-   * @brief Assignment operator
+   * @brief Assignment operator.
+   * @SINCE_1_0.0
+   * @param rhs A reference to the copied handle
+   * @return A reference to this
    */
   TapGesture& operator=( const TapGesture& rhs );
 
   /**
-   * @brief Virtual destructor
+   * @brief Virtual destructor.
+   * @SINCE_1_0.0
    */
   virtual ~TapGesture();
 
@@ -83,7 +91,7 @@ struct DALI_IMPORT_API TapGesture : public Gesture
    * @brief This is the point, in local actor coordinates, where the tap occurred.
    *
    * If a multi-touch tap, then this is the centroid of all the touch points.
-   * @return The point where tap has occurred (in local actor coordinates).
+   * @return The point where tap has occurred (in local actor coordinates)
    */
   Vector2 localPoint;
 };