[Doxygen-users] Divided comments
Brought to you by:
dimitri
|
From: Fabian C. <Cen...@in...> - 2001-10-12 15:52:07
|
Hi
I have a problem I thought it isn't :)
Is it possible to have a comment block for a function in the .h as well as
in the .cpp, both with several infos?
Example:
in Test.h:
... bla bla... file.. class
/*! \brief Short comment on my function.
\param P1 That's parameter 1.
*/
int MyFunc(int P1);
in Test.cpp:
... bla bla... file
/*! Long comment on my function.
*/
int MyFunc(int P1) {}
This works without the \param (or anything else) in the header, but as soon
as I add this or more info, the long comment disappears from the generated
docu (HTML). I tried from version 1.2.8 to 1.2.11 without success. I used
the standard config file, except of course INPUT and OUTPUT.
Thank you for a hint.
bye Fabi
|