[Doxygen-users] Problems with brief description
Brought to you by:
dimitri
From: Alessandro A. <ant...@gm...> - 2015-04-16 15:53:59
|
Hi everyone, My question is: what could cause a brief description to appear as a '!' sign in the HTML documentation output? I had set JAVADOC_AUTOBRIEF = YES in the configuration file. I wrote my classes like: ----------------------------------------------------------- /** * This should be the brief. * This is the detailed description. */ class MyClass { }; ----------------------------------------------------------- In the list of classes the related item appears as: ----------------------------------------------------------- class MyClass ! More... ----------------------------------------------------------- In the class page documentation it also appears that way. ----------------------------------------------------------- MyClass Class Reference ! More... ----------------------------------------------------------- Also in The deails. ----------------------------------------------------------- Detailed Description ! This should be the brief. This is the detailed description. ----------------------------------------------------------- Since there are no '!' characters in the documentation, what could cause that problem? All C++ files are encoded using UTF-8. That was correctly configured in the doxygen configuration file. I also tried specificaly setting the brief with '@brief'. Got same result. |