From a8a379948bc389c7de3702464c49f0ff7f365859 Mon Sep 17 00:00:00 2001 From: Adeel Kazmi Date: Mon, 7 Sep 2020 16:52:57 +0100 Subject: [PATCH] Fix indenting Change-Id: I352dcbb67b54f928ee20695f63f009afa58f8cd7 --- dali/devel-api/object/csharp-type-info.h | 43 ++++++++++++++++---------------- 1 file changed, 21 insertions(+), 22 deletions(-) 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 -- 2.7.4