1 #ifndef DALI_CONNECTION_TRACKER_H
2 #define DALI_CONNECTION_TRACKER_H
5 * Copyright (c) 2020 Samsung Electronics Co., Ltd.
7 * Licensed under the Apache License, Version 2.0 (the "License");
8 * you may not use this file except in compliance with the License.
9 * You may obtain a copy of the License at
11 * http://www.apache.org/licenses/LICENSE-2.0
13 * Unless required by applicable law or agreed to in writing, software
14 * distributed under the License is distributed on an "AS IS" BASIS,
15 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16 * See the License for the specific language governing permissions and
17 * limitations under the License.
22 #include <dali/public-api/common/dali-common.h>
23 #include <dali/public-api/common/dali-vector.h>
24 #include <dali/public-api/signals/connection-tracker-interface.h>
25 #include <dali/public-api/signals/signal-slot-connections.h>
30 * @addtogroup dali_core_signals
39 * @brief Connection tracker concrete implementation.
42 class DALI_CORE_API ConnectionTracker : public ConnectionTrackerInterface
52 * @brief Virtual destructor.
55 ~ConnectionTracker() override;
58 * @brief Disconnects all signals from this object.
64 * @copydoc ConnectionTrackerInterface::SignalConnected
66 void SignalConnected(SlotObserver* slotObserver, CallbackBase* callback) override;
69 * @copydoc ConnectionTrackerInterface::SignalDisconnected
71 void SignalDisconnected(SlotObserver* slotObserver, CallbackBase* callback) override;
74 * @brief Returns the connection count.
76 * @return The connection count
78 std::size_t GetConnectionCount() const;
81 ConnectionTracker(const ConnectionTracker&) = delete; ///< Deleted copy constructor. @SINCE_1_0.0
82 ConnectionTracker(ConnectionTracker&&) = delete; ///< Deleted move constructor. @SINCE_1_9.25
83 ConnectionTracker& operator=(const ConnectionTracker&) = delete; ///< Deleted copy assignment operator. @SINCE_1_0.0
84 ConnectionTracker& operator=(ConnectionTracker&&) = delete; ///< Deleted move assignment operator. @SINCE_1_9.25
87 Dali::Vector<SlotConnection> mConnections; ///< Vector of connection
95 #endif // DALI_CONNECTION_TRACKER_H