I am currently trying to write a horde3d extension and really miss documentation for all the internal classes, I think it would be better if they were documented in the .h, maybe with doxygen documentation so that one can make a HTML document out of it.
I'd be able to write at least a part of these, the question is, would it be possible for them to get integrated into SVN, and what style should one use? My suggestion:
Code:
/**
* Brief class description
*
* Longer class description
*/
class Whatever
{
/**
* Brief class description
* \param a some value
* \param b some value
*/
void doSomething(int a, int b);
};