[Doxygen-users] C++ template documentation
Brought to you by:
dimitri
|
From: David L. L. <da...@WP...> - 2002-01-13 23:39:12
|
Does doxygen support the documentation of C++ template classes? More
specificially, I want to be able to do something like this:
//! Template class for Foo things.
/*!
\templatearg T A Foo thing. Must contain a bar method.
*/
template <class T>
class Foo
{ public:
void something() { T::bar(); }
};
Something along the lines of '\templatearg' is what I'd like to be able
to do.
Thanks for your time.
--
David Ludwig | "The Linux philosophy is laugh in the face of
davidl<at>wpi.edu | danger. Oops. Wrong One. 'Do it yourself.'
http://www.wpi.edu/~davidl | That's it." - Linus Torvalds
|