Add '@addtogroup' tag to generate doxygen page 07/206607/1
authorSeoyeon Kim <seoyeon2.kim@samsung.com>
Wed, 22 May 2019 04:12:13 +0000 (13:12 +0900)
committerSeoyeon Kim <seoyeon2.kim@samsung.com>
Wed, 22 May 2019 05:19:35 +0000 (14:19 +0900)
- In some classes, @addtogroup tag is mssing.
  So, they cannot be included in each API group.

Change-Id: Ie75140ecc93ba9b9776b8da04fce4efe841863a1
Signed-off-by: Seoyeon Kim <seoyeon2.kim@samsung.com>
13 files changed:
dali/public-api/images/pixel-data.h
dali/public-api/math/angle-axis.h
dali/public-api/math/rect.h
dali/public-api/rendering/frame-buffer.h
dali/public-api/rendering/geometry.h
dali/public-api/rendering/property-buffer.h
dali/public-api/rendering/renderer.h
dali/public-api/rendering/sampler.h
dali/public-api/rendering/shader.h
dali/public-api/rendering/texture-set.h
dali/public-api/rendering/texture.h
dali/public-api/size-negotiation/relayout-container.h
doc/dali-core-doc.h

index 19ffe30..13481b4 100644 (file)
 
 namespace Dali
 {
+/**
+ * @addtogroup dali_core_images
+ * @{
+ */
 
 namespace Internal
 {
@@ -140,7 +144,9 @@ public:
   explicit DALI_INTERNAL PixelData( Internal::PixelData* pointer );
 };
 
-
+/**
+ * @}
+ */
 } //namespace Dali
 
 #endif // DALI_PIXEL_DATA_H
index e376dc6..1ff1ed3 100644 (file)
@@ -29,7 +29,7 @@
 namespace Dali
 {
 /**
- * @addtogroup dali_core_object
+ * @addtogroup dali_core_math
  * @{
  */
 
index 4a052e3..5560a8a 100644 (file)
@@ -28,7 +28,7 @@
 namespace Dali
 {
 /**
- * @addtogroup dali_core_object
+ * @addtogroup dali_core_math
  * @{
  */
 
index 456d3d7..9feedde 100644 (file)
 
 namespace Dali
 {
+/**
+ * @addtogroup dali_core_rendering_effects
+ * @{
+ */
 
 namespace Internal DALI_INTERNAL
 {
@@ -185,6 +189,9 @@ public:
   explicit DALI_INTERNAL FrameBuffer( Internal::FrameBuffer* pointer );
 };
 
+/**
+ * @}
+ */
 } //namespace Dali
 
 #endif // DALI_FRAMEBUFFER_H
index 70c94c9..d6db70a 100644 (file)
 
 namespace Dali
 {
+/**
+ * @addtogroup dali_core_rendering_effects
+ * @{
+ */
 
 namespace Internal DALI_INTERNAL
 {
@@ -175,6 +179,9 @@ public:
   explicit DALI_INTERNAL Geometry( Internal::Geometry* pointer );
 };
 
+/**
+ * @}
+ */
 } //namespace Dali
 
 #endif // DALI_GEOMETRY_H
index fb51a13..e2680e0 100644 (file)
 
 namespace Dali
 {
+/**
+ * @addtogroup dali_core_rendering_effects
+ * @{
+ */
 
 namespace Internal DALI_INTERNAL
 {
@@ -163,6 +167,9 @@ public:
   explicit DALI_INTERNAL PropertyBuffer( Internal::PropertyBuffer* pointer );
 };
 
+/**
+ * @}
+ */
 } // namespace Dali
 
 #endif // DALI_PROPERTY_BUFFER_H
index 7d7c155..89b171f 100644 (file)
 
 namespace Dali
 {
+/**
+ * @addtogroup dali_core_rendering_effects
+ * @{
+ */
 
 namespace Internal DALI_INTERNAL
 {
@@ -545,6 +549,9 @@ public:
   explicit DALI_INTERNAL Renderer( Internal::Renderer* pointer );
 };
 
+/**
+ * @}
+ */
 } //namespace Dali
 
 #endif // DALI_RENDERER_H
index f37daaa..e83c8b1 100644 (file)
 
 namespace Dali
 {
+/**
+ * @addtogroup dali_core_rendering_effects
+ * @{
+ */
 
 namespace Internal DALI_INTERNAL
 {
@@ -129,6 +133,9 @@ public:
   explicit DALI_INTERNAL Sampler( Internal::Sampler* pointer );
 };
 
+/**
+ * @}
+ */
 } //namespace Dali
 
 #endif // DALI_SAMPLER_H
index 4f1ead7..36e9f23 100644 (file)
 
 namespace Dali
 {
+/**
+ * @addtogroup dali_core_rendering_effects
+ * @{
+ */
 
 namespace Internal DALI_INTERNAL
 {
@@ -178,6 +182,9 @@ public:
   explicit DALI_INTERNAL Shader( Internal::Shader* effect );
 };
 
+/**
+ * @}
+ */
 } // namespace Dali
 
 #endif // DALI_SHADER_H
index 52e8e24..8af0ca6 100644 (file)
 
 namespace Dali
 {
+/**
+ * @addtogroup dali_core_rendering_effects
+ * @{
+ */
 
 namespace Internal DALI_INTERNAL
 {
@@ -147,6 +151,9 @@ public:
   explicit DALI_INTERNAL TextureSet( Internal::TextureSet* pointer );
 };
 
+/**
+ * @}
+ */
 } //namespace Dali
 
 
index 3569904..a043c7d 100644 (file)
 
 namespace Dali
 {
+/**
+ * @addtogroup dali_core_rendering_effects
+ * @{
+ */
 
 namespace Internal DALI_INTERNAL
 {
@@ -200,6 +204,9 @@ public:
   explicit DALI_INTERNAL Texture( Internal::Texture* pointer );
 };
 
+/**
+ * @}
+ */
 } //namespace Dali
 
 #endif // DALI_TEXTURE_H
index 95e4dec..a82a446 100644 (file)
 
 namespace Dali
 {
+/**
+ * @addtogroup dali_core_size_negotiation
+ * @{
+ */
 
 class RelayoutContainer;
 typedef RelayoutContainer* RelayoutContainerPtr;
@@ -61,6 +65,9 @@ public:
 
 };
 
+/**
+ * @}
+ */
 } // namespace Dali
 
 #endif // DALI_RELAYOUT_CONTAINER_H
index 312f3bd..298c9fc 100644 (file)
  *    <td>@ref dali_core_signals</td>
  *    <td>Classes for the signal and slot structure.</td>
  * </tr>
+ * <tr>
+ *    <td>@ref dali_core_size_negotiation</td>
+ *    <td>Classes for the size negotiation.</td>
+ * </tr>
  * </table>
  *
  * \ifnot show_tizen_feature
 
  *   @defgroup dali_core_signals Signal
  *   @brief Classes for the signal and slot structure.
+
+ *   @defgroup dali_core_size_negotiation Size Negotiation
+ *   @brief Classes for the size negotiation.
  * @}
  */