Merge branch 'devel/master' into tizen
[platform/core/uifw/dali-core.git] / dali / public-api / signals / connection-tracker.h
index 81022dc..3c79d04 100644 (file)
 
 namespace Dali
 {
+/**
+ * @addtogroup dali_core_signals
+ * @{
+ */
 
 class CallbackBase;
 class SlotObserver;
@@ -32,6 +36,7 @@ class SlotConnection;
 
 /**
  * @brief Connection tracker concrete implementation
+ * @SINCE_1_0.0
  */
 class DALI_IMPORT_API ConnectionTracker : public ConnectionTrackerInterface
 {
@@ -39,16 +44,19 @@ public:
 
   /**
    * @brief Constructor.
+   * @SINCE_1_0.0
    */
   ConnectionTracker();
 
   /**
    * @brief Virtual destructor.
+   * @SINCE_1_0.0
    */
   virtual ~ConnectionTracker();
 
   /**
    * @brief Disconnect all signals from this object.
+   * @SINCE_1_0.0
    */
   void DisconnectAll();
 
@@ -64,20 +72,24 @@ public:
 
   /**
    * @brief returns the connection count
+   * @SINCE_1_0.0
    * @return the connection count
    */
   std::size_t GetConnectionCount() const;
 
 private:
 
-  ConnectionTracker( const ConnectionTracker& );            ///< undefined copy constructor
-  ConnectionTracker& operator=( const ConnectionTracker& ); ///< undefined assignment operator
+  ConnectionTracker( const ConnectionTracker& );            ///< undefined copy constructor @SINCE_1_0.0
+  ConnectionTracker& operator=( const ConnectionTracker& ); ///< undefined assignment operator @SINCE_1_0.0
 
 private:
 
   Dali::Vector< SlotConnection* > mConnections; ///< Vector of connection pointers
 };
 
+/**
+ * @}
+ */
 } // namespace Dali
 
 #endif // __DALI_CONNECTION_TRACKER_H__