[Doxygen-users] same routine commented in multiple places
Brought to you by:
dimitri
From: Jeff C. <dox...@mo...> - 2002-03-18 18:02:34
|
Hello, everyone - This is probably a newbie question, but I didn't see the answer in the docs. Is there a way to get Doxygen to merge markup on a function from multiple different files? What I would like to do is this: in Foo.h: class Foo { public: /** * Create a new Foo. * * @param ninjies The number of ninjies to give this Foo. **/ Foo (int ninjies); } in Foo.cc: /** * @exception BadThingException if ninjies is zero. * @exception WorseThingException if ninjies is negative. **/ Foo::Foo (int ninjies) { // ... } where the final documentation that Doxygen produces will merge the markup from the two files and present all of it as the documentation for Foo::Foo(). thanks, Jeff |