2188fbdfa27ec2f57642a0eaaf183fb591284c05
[platform/core/uifw/dali-core.git] / dali / public-api / object / type-info.cpp
1 /*
2  * Copyright (c) 2014 Samsung Electronics Co., Ltd.
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  * http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  *
16  */
17
18 // CLASS HEADER
19 #include <dali/public-api/object/type-info.h>
20
21 // EXTERNAL INCLUDES
22
23 // INTERNAL INCLUDES
24 #include <dali/internal/event/common/type-info-impl.h>
25
26 namespace Dali
27 {
28
29 TypeInfo::TypeInfo()
30 {
31 }
32
33 TypeInfo::~TypeInfo()
34 {
35 }
36
37 TypeInfo::TypeInfo(const TypeInfo& copy)
38 : BaseHandle(copy)
39 {
40 }
41
42 TypeInfo& TypeInfo::operator=(const TypeInfo& rhs)
43 {
44   BaseHandle::operator=(rhs);
45   return *this;
46 }
47
48 TypeInfo& TypeInfo::operator=(BaseHandle::NullType* rhs)
49 {
50   DALI_ASSERT_ALWAYS( (rhs == NULL) && "Can only assign NULL pointer to handle");
51   Reset();
52   return *this;
53 }
54
55 const std::string& TypeInfo::GetName()
56 {
57   return GetImplementation(*this).GetName();
58 }
59
60 const std::string& TypeInfo::GetBaseName()
61 {
62   return GetImplementation(*this).GetBaseName();
63 }
64
65 BaseHandle TypeInfo::CreateInstance()
66 {
67   return GetImplementation(*this).CreateInstance();
68 }
69
70 TypeInfo::CreateFunction TypeInfo::GetCreator()
71 {
72   return GetImplementation(*this).GetCreator();
73 }
74
75 TypeInfo::NameContainer TypeInfo::GetActions()
76 {
77   return GetImplementation(*this).GetActions();
78 }
79
80 TypeInfo::NameContainer TypeInfo::GetSignals()
81 {
82   return GetImplementation(*this).GetSignals();
83 }
84
85 void TypeInfo::GetPropertyIndices( Property::IndexContainer& indices ) const
86 {
87   indices.clear(); // We do not want to clear the container if called internally, so only clear here
88   GetImplementation(*this).GetPropertyIndices( indices );
89 }
90
91 const std::string& TypeInfo::GetPropertyName( Property::Index index ) const
92 {
93   return GetImplementation(*this).GetPropertyName( index );
94 }
95
96 TypeInfo::TypeInfo(Internal::TypeInfo* internal)
97 : BaseHandle(internal)
98 {
99 }
100
101 } // namespace Dali
102