Re: [Doxygen-users] (no subject)
Brought to you by:
dimitri
From: Chris v. <chr...@am...> - 2003-03-19 22:42:37
|
Can't you just use the special commands: /*! \class myfoo description of whatever myfoo is.. */ /*! \fn void myfoo::bar(int a); \param a An integer for something. This function returns nothing, but takes an int. */ ? Or did I miss something in the question? You can group member functions at least by doing something like this: //! \name (some section name) //@{ ...regular stuff... //@} - Another Chris On Wed, 19 Mar 2003, Chris Barlas wrote: > hi, > I am looking to try a few things with doxygen, but I am not able to > modify the source files. I have done some documentation outside of the > files using a separate file and running that into doxygen. Can you document > parameters, returns, class members, functions, defines ... outside of the > source as well in a separate file? > Also.. can you rearrange or make certain module grouped together under user > defined headings or paragraphs? > > ::chris > > > |