blob: d9ea5ea44e8d4335f7dc1a2cb287bcc7d032e7f9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
/*! A test class. */
class Include_Test
{
public:
/// a member function
void example();
};
/*! \page pag_example
* \dontinclude include_test.cpp
* Our main function starts like this:
* \skip main
* \until {
* First we create an object \c t of the Include_Test class.
* \skipline Include_Test
* Then we call the example member function
* \line example
* After that our little test routine ends.
* \line }
*/
|