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.
This commit is contained in:
Matt Williams 2012-07-19 19:58:58 +01:00
parent 1a3999335a
commit 3e941e53df

View File

@ -101,6 +101,9 @@ namespace PolyVox
// most games) but 16-bit and float types do have uses particularly in medical/scientific visualisation.
typedef Density<uint8_t> Density8;
/**
* This is a specialisation of DefaultMarchingCubesController for the Density voxel type
*/
template <typename Type>
class DefaultMarchingCubesController< Density<Type> >
{