039_name.cpp
Go to the documentation of this file.
1 // objective: test the \name and \short commands
2 // check: class_test.xml
3 
4 /** \short A Test class.
5  *
6  * More details about this class.
7  */
8 class Test
9 {
10  public:
11  /** \name A group of functions.
12  * \{
13  */
14 
15  /** foo function */
16  void foo();
17  /** bar function */
18  void bar();
19 
20  /** \} */
21 
22  /** ungrouped function */
23  void ungrouped();
24 };
25 
void bar()
A Test class.
Definition: class.h:3
void foo()
void ungrouped()