Bump to doxygen 1.9.2
[platform/upstream/doxygen.git] / testing / 044_section.h
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