Make Dali::Vector movable & add use Modern C++ semantics on public & devel classes
[platform/core/uifw/dali-core.git] / dali / devel-api / common / ref-counted-dali-vector.h
1 #ifndef REF_COUNTED_DALI_VECTOR_H
2 #define REF_COUNTED_DALI_VECTOR_H
3
4 /*
5  * Copyright (c) 2020 Samsung Electronics Co., Ltd.
6  *
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
10  *
11  * http://www.apache.org/licenses/LICENSE-2.0
12  *
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.
18  *
19  */
20
21 // INTERNAL INCLUDES
22 #include <dali/public-api/common/dali-vector.h>
23 #include <dali/public-api/object/ref-object.h>
24
25 namespace Dali
26 {
27
28 /**
29  * @brief A reference counting wrapper for a vector class that allows
30  * a set of referencing smart pointers to collaborate in managing its
31  * lifetime and eventually cleaning it up.
32  *
33  * This should only be allocated on the new/delete heap, not a thread's
34  * stack.
35  * @tparam T type of the data that the vector holds
36  */
37 template< typename T >
38 class RefCountedVector : public RefObject
39 {
40 public:
41   /**
42    * @brief Construct empty vector.
43    */
44   RefCountedVector()
45   {
46   }
47
48   /**
49    * @brief Get the referenced vector.
50    *
51    * @return A reference to the vector that this object wraps.
52    */
53   Vector< T >& GetVector()
54   {
55     return mVector;
56   }
57
58   // Not copyable or movable
59   RefCountedVector( const RefCountedVector& ) = delete; ///< Deleted copy constructor
60   RefCountedVector( RefCountedVector&& ) = delete; ///< Deleted move constructor
61   RefCountedVector& operator=( const RefCountedVector& ) = delete; ///< Deleted copy assignment operator
62   RefCountedVector& operator=( RefCountedVector&& ) = delete; ///< Deleted move assignment operator
63
64 protected:
65   virtual ~RefCountedVector()
66   {
67   }
68
69 private:
70
71   Vector< T > mVector; ///< The vector of data
72 };
73
74 } // namespace Dali
75
76 #endif // REF_COUNTED_DALI_VECTOR_H