1 #ifndef __DALI_REF_OBJECT_H__
2 #define __DALI_REF_OBJECT_H__
5 * Copyright (c) 2015 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/intrusive-ptr.h>
28 * @addtogroup dali_core_object
35 * @brief Base class for reference counted objects.
37 * Typically this should be used with an instrusive pointer,
38 * instead of calling Reference() and Unreference() methods directly.
41 class DALI_IMPORT_API RefObject
46 * @brief Increments the object's reference count.
52 * @brief Decrements the object's reference count.
54 * When the reference count drops to zero, the object will self-destruct.
60 * @brief Retrieves the object's reference count.
63 * @return The reference count
70 * @brief Default constructor.
76 * @brief RefObject is intended as a base class.
78 * A RefObject may only be deleted when its reference count is zero.
84 * @brief Copy constructor.
86 * The newly copied object will have a reference count of zero.
88 * @param[in] rhs The object to copy
90 RefObject(const RefObject& rhs);
93 * @brief Assignment operator.
95 * The newly copied object will have a reference count of zero.
97 * @param[in] rhs The object to copy
98 * @return A reference to this
100 RefObject& operator=(const RefObject& rhs);
104 volatile int mCount; ///< Reference count
112 #endif // __DALI_REF_OBJECT_H__