From de9594ca73725ff8067084cd0766ff74d6fe0b7c Mon Sep 17 00:00:00 2001 From: Mike Kremer Date: Fri, 27 Nov 2009 13:37:59 +0000 Subject: [PATCH] Avoiding some doxygen warnings git-svn-id: http://www.openmesh.org/svnrepo/OpenMesh/trunk@248 fdac6126-5c0c-442c-9429-916003d36597 --- Doc/mesh.docu | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/Doc/mesh.docu b/Doc/mesh.docu index dbb6a7bc..9a2b12b1 100644 --- a/Doc/mesh.docu +++ b/Doc/mesh.docu @@ -16,14 +16,12 @@ might ask: "What the heck is that?" It means, a parent class is passed as a template argument to another class: \code - class P1 { } class P2 { } template class B : public Parent {} typedef B fooB1; typedef B fooB2; - \endcode Voila, we have created two different types of B. Depending on the @@ -244,7 +242,7 @@ shows the overall concept. \image html class-hierarchy2.png -\subsection ch_kernel Building the kernel +\section ch_kernel Building the kernel -# The BaseKernel defines the basic operations on properties like add/remove/access. @@ -255,7 +253,7 @@ the mesh items vertices, (half-)edges, and faces. The base class is passed as a template parameter, since depending on the underlying storage type the AttribKernel might change. -\subsection ch_complete Building the mesh +\section ch_complete Building the mesh -# The PolyMeshT inherits from the kernel and provide all necessary methods to work with polygonal meshes.