[Doxygen-users] Template problem
Brought to you by:
dimitri
|
From: Ren G. <r.g...@ca...> - 2001-05-04 10:02:12
|
Hi !
I have a problem in the following example.
Example:
template <typename XYZ >
class ABC : virtual public XYZ { };
Problem:
I have a class template that is derived from its template parameter "XYZ".
Doxygen makes an error and recognizes the 'XYZ' parameter as a real known
class. That's wrong because 'XYZ' is a wild card - only after the object of
ABC type is created the type of the template will be known.
Therefore it would be better, if Doxygen omits the documentation of the
template parameter 'XYZ '.
MfG
Ren=E9
|