Seperate the API macros
[platform/core/uifw/dali-core.git] / dali / public-api / object / property-types.cpp
1 /*
2  * Copyright (c) 2018 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/property-types.h>
20
21 namespace Dali
22 {
23
24 namespace
25 {
26 const char* const PROPERTY_TYPE_NAMES[] =
27 {
28   "NONE",
29   "BOOLEAN",
30   "FLOAT",
31   "INTEGER",
32   "VECTOR2",
33   "VECTOR3",
34   "VECTOR4",
35   "MATRIX3",
36   "MATRIX",
37   "RECTANGLE",
38   "ROTATION",
39   "STRING",
40   "ARRAY",
41   "MAP",
42   "EXTENTS",
43 };
44 const unsigned int PROPERTY_TYPE_NAMES_COUNT = sizeof( PROPERTY_TYPE_NAMES ) / sizeof( const char* );
45 }
46
47 namespace PropertyTypes
48 {
49
50 DALI_CORE_API const char* GetName(Property::Type type)
51 {
52   if (type < PROPERTY_TYPE_NAMES_COUNT )
53   {
54     return PROPERTY_TYPE_NAMES[type];
55   }
56
57   return PROPERTY_TYPE_NAMES[Property::NONE];
58 }
59
60 }; // namespace PropertyTypes
61
62 } // namespace Dali