Test project
 All Files Functions
bb.c
Go to the documentation of this file.
1 /// @brief test for pre tag
2 ///
3 /// <pre>
4 /// line 1 of pre
5 ///
6 /// line 2 of pre after one empty line
7 ///
8 ///
9 /// line 3 of pre after two empty lines
10 /// </pre>
12 {
13 }
14 /// @brief test for verbatim tag
15 ///
16 /// Tests part for par and a verbatim section
17 /// @verbatim
18 /// line 1 of verbatim
19 ///
20 /// line 2 of verbatim after one empty line
21 ///
22 ///
23 /// line 3 of verbatim after two empty lines
24 /// @endverbatim
26 {
27 }
28 /// @brief test for pre tag with par tag
29 ///
30 /// @par par line
31 /// <pre>
32 /// line 1 of pre
33 ///
34 /// line 2 of pre after one empty line
35 ///
36 ///
37 /// line 3 of pre after two empty lines
38 /// </pre>
40 {
41 }
42 /// @brief test for verbatim tag with par tag
43 ///
44 /// @par par line
45 /// @verbatim
46 /// line 1 of verbatim
47 ///
48 /// line 2 of verbatim after one empty line
49 ///
50 ///
51 /// line 3 of verbatim after two empty lines
52 /// @endverbatim
54 {
55 }