Bump to doxygen 1.9.2
[platform/upstream/doxygen.git] / testing / 046_related.cpp
1 // objective: test the \related, \relatedalso, \see, and \sa commands
2 // check: class_test.xml
3 // check: 046__related_8cpp.xml
4
5 /** @file */
6
7 /** A test class 
8  *  @see Test::method()
9  */
10 class Test 
11 {
12   public:
13     /** A method */
14     void method();
15 };
16
17 /*!
18  * A function.
19  * \related Test
20  * \sa another()
21  */
22 void function();
23
24 /*!
25  * Another function
26  * \relatedalso Test
27  */
28 void another();