015_cond.c
Go to the documentation of this file.
1 // objective: test the \cond command
2 // check: 015__cond_8c.xml
3 // config: ENABLED_SECTIONS = COND_ENABLED
4 
5 /** \file
6  * Text \a argument more text.
7  */
8 
9 /// \cond
10 
11 /** A function */
12 void func();
13 
14 /** A macro */
15 #define MACRO 42
16 
17 /// \endcond
18 
19 /// \cond COND_ENABLED
20 void cond_enabled()
21 {
22 }
23 /// \endcond
24 
25 /** \cond COND_DISABLED */
26 void cond_disabled()
27 {
28 }
29 /** \endcond */
30 
def func()
Definition: docstring.py:7