From: Adeel Kazmi Date: Mon, 7 Sep 2020 15:52:57 +0000 (+0100) Subject: Fix indenting X-Git-Tag: dali_1.9.29~8^2 X-Git-Url: http://review.tizen.org/git/?p=platform%2Fcore%2Fuifw%2Fdali-core.git;a=commitdiff_plain;h=a8a379948bc389c7de3702464c49f0ff7f365859 Fix indenting Change-Id: I352dcbb67b54f928ee20695f63f009afa58f8cd7 --- diff --git a/dali/devel-api/object/csharp-type-info.h b/dali/devel-api/object/csharp-type-info.h index 3d147f7..0408bd9 100644 --- a/dali/devel-api/object/csharp-type-info.h +++ b/dali/devel-api/object/csharp-type-info.h @@ -2,7 +2,7 @@ #define DALI_CSHARP_TYPE_INFO_H /* - * Copyright (c) 2019 Samsung Electronics Co., Ltd. + * Copyright (c) 2020 Samsung Electronics Co., Ltd. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -28,36 +28,35 @@ namespace Dali namespace CSharpTypeInfo { - /** - * @brief Call back used to create an instance of the associated object type - * - * @param[in] typeName The type name of the object to be created. - * @return Pointer to a BaseHandle - */ +/** + * @brief Call back used to create an instance of the associated object type + * + * @param[in] typeName The type name of the object to be created. + * @return Pointer to a BaseHandle + */ 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. - * @param[in] propertyName The name of the property required. - * @param[in] value The new value of the property for the object specified. - * @see PropertyRegistration. - */ + * @brief Callback to set an event-thread only property. + * + * @param[in] object The object whose property should be set. + * @param[in] propertyName The name of the property required. + * @param[in] value The new value of the property for the object specified. + * @see PropertyRegistration. + */ 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. - * @param[in] propertyName The name of the property required. - * @return The current value of the property for the object specified. - * @see PropertyRegistration. - */ + * @brief Callback to get the value of an event-thread only property. + * + * @param[in] object The object whose property value is required. + * @param[in] propertyName The name of the property required. + * @return The current value of the property for the object specified. + * @see PropertyRegistration. + */ using GetPropertyFunction = Property::Value *(*)( BaseObject *, const char *const ); } - } // namespace Dali #endif // DALI_CSHARP_TYPE_INFO_H