Re: [Doxygen-users] How to use @copydoc command
Brought to you by:
dimitri
From: Dimitri v. H. <di...@st...> - 2002-08-28 17:35:47
|
On Wed, Aug 28, 2002 at 11:36:35AM -0400, Don McClimans wrote: > I am trying to use the @copydoc command with overloaded functions. It works > fine with functions whose parameters have a one-word type. For example: > > @copydoc function(bool) > > But I need to copy documentation from a function whose prototype is: > > void function(const wchar_t* Name, bool Value); > > and I can't seem to make copydoc recognize this. The only thing the manual > says is "specify the argument types explicitly (without spaces!)". I have > tried: > > @copydoc function(wchar_t,bool) > @copydoc function(const wchar_t*,bool) > @copydoc function(const wchar_t *,bool) > @copydoc function(constwchar_t*,bool) The old parser has a bug, but if you build the latest CVS release and use the new validating parser (-d Validate) then you'll see that @copydoc function(const wchar_t*,bool) or @copydoc function(const wchar_t *,bool) will work as expected. Regards, Dimitri |