From caf9fb6cceffa331e10555d518acc7a2d10f100b Mon Sep 17 00:00:00 2001 From: Nathan Letwory Date: Sun, 27 Feb 2011 20:30:35 +0000 Subject: [PATCH] doxygen: blender/collada tagged. --- source/blender/collada/AnimationImporter.cpp | 5 +++++ source/blender/collada/ArmatureExporter.cpp | 5 +++++ source/blender/collada/ArmatureImporter.cpp | 5 +++++ source/blender/collada/CameraExporter.cpp | 5 +++++ source/blender/collada/DocumentExporter.cpp | 5 +++++ source/blender/collada/DocumentImporter.cpp | 5 +++++ source/blender/collada/EffectExporter.cpp | 5 +++++ source/blender/collada/GeometryExporter.cpp | 5 +++++ source/blender/collada/ImageExporter.cpp | 5 +++++ source/blender/collada/InstanceWriter.cpp | 5 +++++ source/blender/collada/LightExporter.cpp | 5 +++++ source/blender/collada/MaterialExporter.cpp | 5 +++++ source/blender/collada/MeshImporter.cpp | 5 +++++ source/blender/collada/SkinInfo.cpp | 5 +++++ source/blender/collada/TransformReader.cpp | 5 +++++ source/blender/collada/TransformWriter.cpp | 5 +++++ source/blender/collada/collada.cpp | 5 +++++ source/blender/collada/collada_internal.cpp | 5 +++++ source/blender/collada/collada_utils.cpp | 5 +++++ 19 files changed, 95 insertions(+) diff --git a/source/blender/collada/AnimationImporter.cpp b/source/blender/collada/AnimationImporter.cpp index 21cd71a90dc..cba39b04c3c 100644 --- a/source/blender/collada/AnimationImporter.cpp +++ b/source/blender/collada/AnimationImporter.cpp @@ -22,6 +22,11 @@ * ***** END GPL LICENSE BLOCK ***** */ +/** \file blender/collada/AnimationImporter.cpp + * \ingroup collada + */ + + /* COLLADABU_ASSERT, may be able to remove later */ #include "COLLADABUPlatform.h" diff --git a/source/blender/collada/ArmatureExporter.cpp b/source/blender/collada/ArmatureExporter.cpp index e8335173d50..90c3cfbb001 100644 --- a/source/blender/collada/ArmatureExporter.cpp +++ b/source/blender/collada/ArmatureExporter.cpp @@ -23,6 +23,11 @@ * ***** END GPL LICENSE BLOCK ***** */ +/** \file blender/collada/ArmatureExporter.cpp + * \ingroup collada + */ + + #include "COLLADASWBaseInputElement.h" #include "COLLADASWInstanceController.h" #include "COLLADASWPrimitves.h" diff --git a/source/blender/collada/ArmatureImporter.cpp b/source/blender/collada/ArmatureImporter.cpp index bf51e64b0bd..8987e4ffaf7 100644 --- a/source/blender/collada/ArmatureImporter.cpp +++ b/source/blender/collada/ArmatureImporter.cpp @@ -22,6 +22,11 @@ * ***** END GPL LICENSE BLOCK ***** */ +/** \file blender/collada/ArmatureImporter.cpp + * \ingroup collada + */ + + /* COLLADABU_ASSERT, may be able to remove later */ #include "COLLADABUPlatform.h" diff --git a/source/blender/collada/CameraExporter.cpp b/source/blender/collada/CameraExporter.cpp index b2c9dd9a7c8..f8fa0fd55c0 100644 --- a/source/blender/collada/CameraExporter.cpp +++ b/source/blender/collada/CameraExporter.cpp @@ -23,6 +23,11 @@ * ***** END GPL LICENSE BLOCK ***** */ +/** \file blender/collada/CameraExporter.cpp + * \ingroup collada + */ + + #include #include "COLLADASWCamera.h" diff --git a/source/blender/collada/DocumentExporter.cpp b/source/blender/collada/DocumentExporter.cpp index 9d9d105d04d..cf8caabe409 100644 --- a/source/blender/collada/DocumentExporter.cpp +++ b/source/blender/collada/DocumentExporter.cpp @@ -21,6 +21,11 @@ * * ***** END GPL LICENSE BLOCK ***** */ + +/** \file blender/collada/DocumentExporter.cpp + * \ingroup collada + */ + #include #include #include diff --git a/source/blender/collada/DocumentImporter.cpp b/source/blender/collada/DocumentImporter.cpp index 2267cf747b1..9669266d851 100644 --- a/source/blender/collada/DocumentImporter.cpp +++ b/source/blender/collada/DocumentImporter.cpp @@ -21,6 +21,11 @@ * * ***** END GPL LICENSE BLOCK ***** */ + +/** \file blender/collada/DocumentImporter.cpp + * \ingroup collada + */ + // TODO: // * name imported objects // * import object rotation as euler diff --git a/source/blender/collada/EffectExporter.cpp b/source/blender/collada/EffectExporter.cpp index d20cb74ba9f..ee0ade53e99 100644 --- a/source/blender/collada/EffectExporter.cpp +++ b/source/blender/collada/EffectExporter.cpp @@ -23,6 +23,11 @@ * ***** END GPL LICENSE BLOCK ***** */ +/** \file blender/collada/EffectExporter.cpp + * \ingroup collada + */ + + #include #include "COLLADASWEffectProfile.h" diff --git a/source/blender/collada/GeometryExporter.cpp b/source/blender/collada/GeometryExporter.cpp index a637bdc5155..9edfbe14a71 100644 --- a/source/blender/collada/GeometryExporter.cpp +++ b/source/blender/collada/GeometryExporter.cpp @@ -23,6 +23,11 @@ * ***** END GPL LICENSE BLOCK ***** */ +/** \file blender/collada/GeometryExporter.cpp + * \ingroup collada + */ + + #include "COLLADASWPrimitves.h" #include "COLLADASWSource.h" #include "COLLADASWVertices.h" diff --git a/source/blender/collada/ImageExporter.cpp b/source/blender/collada/ImageExporter.cpp index e87f6208d59..a2d9cb15ab1 100644 --- a/source/blender/collada/ImageExporter.cpp +++ b/source/blender/collada/ImageExporter.cpp @@ -23,6 +23,11 @@ * ***** END GPL LICENSE BLOCK ***** */ +/** \file blender/collada/ImageExporter.cpp + * \ingroup collada + */ + + #include "COLLADABUURI.h" #include "COLLADASWImage.h" diff --git a/source/blender/collada/InstanceWriter.cpp b/source/blender/collada/InstanceWriter.cpp index a135b51f025..c9bcd24f9a7 100644 --- a/source/blender/collada/InstanceWriter.cpp +++ b/source/blender/collada/InstanceWriter.cpp @@ -23,6 +23,11 @@ * ***** END GPL LICENSE BLOCK ***** */ +/** \file blender/collada/InstanceWriter.cpp + * \ingroup collada + */ + + #include #include "COLLADASWInstanceMaterial.h" diff --git a/source/blender/collada/LightExporter.cpp b/source/blender/collada/LightExporter.cpp index d13a053b8fe..ab72d2113bb 100644 --- a/source/blender/collada/LightExporter.cpp +++ b/source/blender/collada/LightExporter.cpp @@ -23,6 +23,11 @@ * ***** END GPL LICENSE BLOCK ***** */ +/** \file blender/collada/LightExporter.cpp + * \ingroup collada + */ + + #include #include "COLLADASWColor.h" diff --git a/source/blender/collada/MaterialExporter.cpp b/source/blender/collada/MaterialExporter.cpp index a0d66e6467d..5814cb8101c 100644 --- a/source/blender/collada/MaterialExporter.cpp +++ b/source/blender/collada/MaterialExporter.cpp @@ -23,6 +23,11 @@ * ***** END GPL LICENSE BLOCK ***** */ +/** \file blender/collada/MaterialExporter.cpp + * \ingroup collada + */ + + #include "MaterialExporter.h" #include "COLLADABUUtils.h" diff --git a/source/blender/collada/MeshImporter.cpp b/source/blender/collada/MeshImporter.cpp index d458b47885f..35098b14072 100644 --- a/source/blender/collada/MeshImporter.cpp +++ b/source/blender/collada/MeshImporter.cpp @@ -22,6 +22,11 @@ * ***** END GPL LICENSE BLOCK ***** */ +/** \file blender/collada/MeshImporter.cpp + * \ingroup collada + */ + + #include #if !defined(WIN32) || defined(FREE_WINDOWS) diff --git a/source/blender/collada/SkinInfo.cpp b/source/blender/collada/SkinInfo.cpp index 3e778e09ddf..10780de2e70 100644 --- a/source/blender/collada/SkinInfo.cpp +++ b/source/blender/collada/SkinInfo.cpp @@ -22,6 +22,11 @@ * ***** END GPL LICENSE BLOCK ***** */ +/** \file blender/collada/SkinInfo.cpp + * \ingroup collada + */ + + #include #if !defined(WIN32) || defined(FREE_WINDOWS) diff --git a/source/blender/collada/TransformReader.cpp b/source/blender/collada/TransformReader.cpp index 04711775f14..3d624520e53 100644 --- a/source/blender/collada/TransformReader.cpp +++ b/source/blender/collada/TransformReader.cpp @@ -21,6 +21,11 @@ * * ***** END GPL LICENSE BLOCK ***** */ + +/** \file blender/collada/TransformReader.cpp + * \ingroup collada + */ + /* COLLADABU_ASSERT, may be able to remove later */ #include "COLLADABUPlatform.h" diff --git a/source/blender/collada/TransformWriter.cpp b/source/blender/collada/TransformWriter.cpp index c74f23599e8..8638e16e1c2 100644 --- a/source/blender/collada/TransformWriter.cpp +++ b/source/blender/collada/TransformWriter.cpp @@ -23,6 +23,11 @@ * ***** END GPL LICENSE BLOCK ***** */ +/** \file blender/collada/TransformWriter.cpp + * \ingroup collada + */ + + #include "BKE_object.h" #include "TransformWriter.h" diff --git a/source/blender/collada/collada.cpp b/source/blender/collada/collada.cpp index e285197f8f7..0d822c63094 100644 --- a/source/blender/collada/collada.cpp +++ b/source/blender/collada/collada.cpp @@ -22,6 +22,11 @@ * ***** END GPL LICENSE BLOCK ***** */ +/** \file blender/collada/collada.cpp + * \ingroup collada + */ + + /* COLLADABU_ASSERT, may be able to remove later */ #include "COLLADABUPlatform.h" diff --git a/source/blender/collada/collada_internal.cpp b/source/blender/collada/collada_internal.cpp index b3ac62bb6a4..1eaa043e180 100644 --- a/source/blender/collada/collada_internal.cpp +++ b/source/blender/collada/collada_internal.cpp @@ -22,6 +22,11 @@ * ***** END GPL LICENSE BLOCK ***** */ +/** \file blender/collada/collada_internal.cpp + * \ingroup collada + */ + + /* COLLADABU_ASSERT, may be able to remove later */ #include "COLLADABUPlatform.h" diff --git a/source/blender/collada/collada_utils.cpp b/source/blender/collada/collada_utils.cpp index 31ef8064b1f..d85be814102 100644 --- a/source/blender/collada/collada_utils.cpp +++ b/source/blender/collada/collada_utils.cpp @@ -22,6 +22,11 @@ * ***** END GPL LICENSE BLOCK ***** */ +/** \file blender/collada/collada_utils.cpp + * \ingroup collada + */ + + /* COLLADABU_ASSERT, may be able to remove later */ #include "COLLADABUPlatform.h"