Re: [Doxygen-users] (no subject)
Brought to you by:
dimitri
From: Bradley W. <br...@wa...> - 2010-10-21 02:04:03
|
Yes, that was it. When I changed it to the C++ syntax as Dimitri suggested, it worked great. I just submitted a bug on this: https://bugzilla.gnome.org/show_bug.cgi?id=632754 Thank you very much for the workaround, Dimitri, and thank you very much for a great product! Brad -----Original Message----- From: Dimitri Van Heesch [mailto:do...@gm...] Sent: Wednesday, October 20, 2010 4:01 PM To: Bradley Ward Cc: 'Phil Longstaff'; dox...@li... Subject: Re: [Doxygen-users] (no subject) On Oct 20, 2010, at 17:49 , Bradley Ward wrote: > You learn so much by following these emails! > > I was not familiar with the @copydoc command either, so when I saw this email I immediately went and tried it out. But I have not been able to get it to work. > > When I do the following: > > @copydoc Fully.Qualified.ClassName > > I get the following error from Doxygen: > > Warning: target "Fully.Qualified.ClassName" of \copydoc command not found > > To test the resolution of the class I am trying to copydoc from, I put the following: > > @see Fully.Qualified.ClassName > > The @see command works fine and generates the link, but the @copydoc command gives me that warning message and does no copy in the documentation. > > What am I doing wrong here? Is there some syntax I need to use to copydoc the comments from the interface class into my implementation class? Doxygen is somewhat C++ oriented which shows through in some cases. I suggest to try \copydoc Fully::Qualified::ClassName instead. Feel free to file a bug report that using dots does not work, so I do not forget to fix this. Regards, Dimitri |