diff options
author | albert-github <albert.tests@gmail.com> | 2021-06-13 11:49:33 (GMT) |
---|---|---|
committer | albert-github <albert.tests@gmail.com> | 2021-06-13 11:49:33 (GMT) |
commit | ecde20826540d339c5f03e6ff7eb77464af9c269 (patch) | |
tree | 7e75264c85c27e50ba6a725672b5a132a65cce34 /libversion/fullversion.cpp | |
parent | 6200bc83119593e1f37adae88284a2d3bf8beed6 (diff) | |
download | Doxygen-ecde20826540d339c5f03e6ff7eb77464af9c269.zip Doxygen-ecde20826540d339c5f03e6ff7eb77464af9c269.tar.gz Doxygen-ecde20826540d339c5f03e6ff7eb77464af9c269.tar.bz2 |
Merged brief and detailed description in case if INLINE_SIMPLE_STRUCTS with LaTeX/ RTF
When we have a program like:
```
/** \file */
/** outer */
struct Outer
{
/** foo */
union Foo
{
/** Bar */
struct FooFlags
{
bool cond1; /*!< \brief bar 1
* \details details1 bar 1
*/
bool cond2; /*!< bar 2 */
} flags; /*!< \brief foo bar
* \details details2 of foo bar
*/
} myMember; /*!< public member */
private:
void myWork(); /*!< private member function */
};
```
and a Doxyfile like
```
INLINE_SIMPLE_STRUCTS = YES
QUIET=YES
GENERATE_RTF=YES
```
We see in HTML that brief and detailed description start on a separate line, but for LaTeX and RTF (it is not implemented in docbook) the detailed description directly follows the brief description without a line separator.
Diffstat (limited to 'libversion/fullversion.cpp')
0 files changed, 0 insertions, 0 deletions