Bump to doxygen 1.9.2
[platform/upstream/doxygen.git] / testing / 039_name.cpp
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