044_section.h
Go to the documentation of this file.
1 // objective: test the \(public|protected|private)section commands
2 // check: struct_s.xml
3 
4 /** A struct */
5 struct S
6 {
7  /** \publicsection */
8 
9  /** public field */
10  int pub1;
11  /** another public field */
12  int pub2;
13 
14  /** \protectedsection */
15 
16  /** protected field */
17  int pro1;
18  /** another protected field */
19  int pro2;
20 
21  /** \privatesection */
22 
23  /** private field */
24  int pri1;
25  /** another private field */
26  int pri2;
27 };
28 
int pri2
Definition: 044_section.h:26
int pri1
Definition: 044_section.h:24
Definition: 044_section.h:5
int pub2
Definition: 044_section.h:12
int pro2
Definition: 044_section.h:19
int pro1
Definition: 044_section.h:17
int pub1
Definition: 044_section.h:10