From 3e941e53dfcef04a26f8b84914df415a16ed27d0 Mon Sep 17 00:00:00 2001 From: Matt Williams Date: Thu, 19 Jul 2012 19:58:58 +0100 Subject: [PATCH] Add a docstring linking back to the base template As far as I can tell, by default Doxygen doesn't make links from specialised templates back to their bases so this adds it manually. This is especially useful given that the base template has some very good documentation in this case. --- library/PolyVoxCore/include/PolyVoxCore/Density.h | 3 +++ 1 file changed, 3 insertions(+) diff --git a/library/PolyVoxCore/include/PolyVoxCore/Density.h b/library/PolyVoxCore/include/PolyVoxCore/Density.h index 98508fb5..8987b4c1 100644 --- a/library/PolyVoxCore/include/PolyVoxCore/Density.h +++ b/library/PolyVoxCore/include/PolyVoxCore/Density.h @@ -101,6 +101,9 @@ namespace PolyVox // most games) but 16-bit and float types do have uses particularly in medical/scientific visualisation. typedef Density Density8; + /** + * This is a specialisation of DefaultMarchingCubesController for the Density voxel type + */ template class DefaultMarchingCubesController< Density > {