Main Page
Related Pages
Modules
Namespaces
Classes
Files
Examples
File List
File Members
doxygen-1.8.11
testing
046_related.cpp
Go to the documentation of this file.
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
();
Test
A Test class.
Definition:
class.h:3
Test::another
void another()
Test::method
void method()
Generated by
1.8.11