X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=dali%2Fdevel-api%2Fobject%2Fcsharp-type-info.h;h=3d147f71761675f8506dd16803e473e52f503517;hb=5826321b721c2dc09abda23e9d845cb4cf8edc92;hp=ecffb2ae1765fa4cdf27dc373ca200d21abee287;hpb=530f04ff7c31e961708d113d624572d87a57d310;p=platform%2Fcore%2Fuifw%2Fdali-core.git diff --git a/dali/devel-api/object/csharp-type-info.h b/dali/devel-api/object/csharp-type-info.h index ecffb2a..3d147f7 100644 --- a/dali/devel-api/object/csharp-type-info.h +++ b/dali/devel-api/object/csharp-type-info.h @@ -34,9 +34,9 @@ namespace CSharpTypeInfo * @param[in] typeName The type name of the object to be created. * @return Pointer to a BaseHandle */ - typedef BaseHandle* (*CreateFunction)(const char* const typeName); +using CreateFunction = BaseHandle *(*)( const char *const ); - /** +/** * @brief Callback to set an event-thread only property. * * @param[in] object The object whose property should be set. @@ -44,10 +44,9 @@ namespace CSharpTypeInfo * @param[in] value The new value of the property for the object specified. * @see PropertyRegistration. */ - typedef void (*SetPropertyFunction)( BaseObject* object, const char* const propertyName , Property::Value* value ); - +using SetPropertyFunction = void ( * )( BaseObject *, const char *const, Property::Value * ); - /** +/** * @brief Callback to get the value of an event-thread only property. * * @param[in] object The object whose property value is required. @@ -55,7 +54,7 @@ namespace CSharpTypeInfo * @return The current value of the property for the object specified. * @see PropertyRegistration. */ - typedef Property::Value* (*GetPropertyFunction)( BaseObject* object, const char* const propertyName ); +using GetPropertyFunction = Property::Value *(*)( BaseObject *, const char *const ); }