Fix issues and added Wextra flag.
[platform/core/uifw/dali-core.git] / dali / public-api / object / property-types.cpp
1 /*
2  * Copyright (c) 2015 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   "UNSIGNED_INTEGER",
33   "VECTOR2",
34   "VECTOR3",
35   "VECTOR4",
36   "MATRIX3",
37   "MATRIX",
38   "RECTANGLE",
39   "ROTATION",
40   "STRING",
41   "ARRAY",
42   "MAP",
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_EXPORT_API
51 const char* GetName(Property::Type type)
52 {
53   if (type < PROPERTY_TYPE_NAMES_COUNT )
54   {
55     return PROPERTY_TYPE_NAMES[type];
56   }
57
58   return PROPERTY_TYPE_NAMES[Property::NONE];
59 }
60
61 }; // namespace PropertyTypes
62
63 } // namespace Dali