Fix indenting
[platform/core/uifw/dali-core.git] / dali / devel-api / object / csharp-type-info.h
1 #ifndef DALI_CSHARP_TYPE_INFO_H
2 #define DALI_CSHARP_TYPE_INFO_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/object/base-object.h>
23 #include <dali/public-api/object/property-value.h>
24
25 namespace Dali
26 {
27
28 namespace CSharpTypeInfo
29 {
30
31 /**
32  * @brief Call back used to create an instance of the associated object type
33  *
34  * @param[in] typeName The type name of the object to be created.
35  * @return Pointer to a BaseHandle
36  */
37 using CreateFunction = BaseHandle *(*)( const char *const );
38
39 /**
40  * @brief Callback to set an event-thread only property.
41  *
42  * @param[in] object The object whose property should be set.
43  * @param[in] propertyName The name of the property required.
44  * @param[in] value The new value of the property for the object specified.
45  * @see PropertyRegistration.
46  */
47 using SetPropertyFunction = void ( * )( BaseObject *, const char *const, Property::Value * );
48
49 /**
50  * @brief Callback to get the value of an event-thread only property.
51  *
52  * @param[in] object The object whose property value is required.
53  * @param[in] propertyName The name of the property required.
54  * @return The current value of the property for the object specified.
55  * @see PropertyRegistration.
56  */
57 using GetPropertyFunction = Property::Value *(*)( BaseObject *, const char *const );
58 }
59
60 } // namespace Dali
61
62 #endif // DALI_CSHARP_TYPE_INFO_H