Main Page
Related Pages
Modules
Namespaces
Classes
Files
Examples
File List
File Members
doxygen-1.8.11
testing
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
S::pri2
int pri2
Definition:
044_section.h:26
S::pri1
int pri1
Definition:
044_section.h:24
S
Definition:
044_section.h:5
S::pub2
int pub2
Definition:
044_section.h:12
S::pro2
int pro2
Definition:
044_section.h:19
S::pro1
int pro1
Definition:
044_section.h:17
S::pub1
int pub1
Definition:
044_section.h:10
Generated by
1.8.11