Making DALi public API typesafe using guaranteed types; uint8_t, uint32_t
[platform/core/uifw/dali-core.git] / dali / public-api / signals / slot-delegate.h
index 5e28d31..8b5f260 100644 (file)
@@ -70,6 +70,7 @@ namespace Dali
  * };
  *
  * @endcode
+ * @SINCE_1_0.0
  */
 template <typename Slot>
 class SlotDelegate
@@ -79,7 +80,8 @@ public:
   /**
    * @brief Constructor.
    *
-   * @param[in] slot The object with a callback.
+   * @SINCE_1_0.0
+   * @param[in] slot The object with a callback
    */
   SlotDelegate( Slot* slot )
   : mSlot( slot )
@@ -89,14 +91,16 @@ public:
   /**
    * @brief Non-virtual destructor.
    *
+   * @SINCE_1_0.0
    */
   ~SlotDelegate()
   {
   }
 
   /**
-   * @brief Disconnect all signals from this object.
+   * @brief Disconnects all signals from this object.
    *
+   * @SINCE_1_0.0
    */
   void DisconnectAll()
   {
@@ -112,9 +116,10 @@ public:
   }
 
   /**
-   * @brief Retrieve the slot object.
+   * @brief Retrieves the slot object.
    *
-   * @return The object with a callback.
+   * @SINCE_1_0.0
+   * @return The object with a callback
    */
   Slot* GetSlot()
   {
@@ -122,9 +127,10 @@ public:
   }
 
   /**
-   * @brief Retrieve the connection tracker component.
+   * @brief Retrieves the connection tracker component.
    *
-   * @return The connection tracker component.
+   * @SINCE_1_0.0
+   * @return The connection tracker component
    */
   ConnectionTracker* GetConnectionTracker()
   {
@@ -133,8 +139,8 @@ public:
 
 private:
 
-  SlotDelegate( const SlotDelegate& );            ///< undefined copy constructor
-  SlotDelegate& operator=( const SlotDelegate& ); ///< undefined assignment operator
+  SlotDelegate( const SlotDelegate& );            ///< undefined copy constructor @SINCE_1_0.0
+  SlotDelegate& operator=( const SlotDelegate& ); ///< undefined assignment operator @SINCE_1_0.0
 
 private: