Fix indenting 04/243504/1
authorAdeel Kazmi <adeel.kazmi@samsung.com>
Mon, 7 Sep 2020 15:52:57 +0000 (16:52 +0100)
committerAdeel Kazmi <adeel.kazmi@samsung.com>
Mon, 7 Sep 2020 15:52:57 +0000 (16:52 +0100)
Change-Id: I352dcbb67b54f928ee20695f63f009afa58f8cd7

dali/devel-api/object/csharp-type-info.h

index 3d147f7..0408bd9 100644 (file)
@@ -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