021_dontinclude.cpp
Go to the documentation of this file.
1 // objective: test the \dontinclude, \skip, \until, \skipline, \line commands
2 // check: indexpage.xml
3 /*! A test class. */
4 
5 class Test
6 {
7  public:
8  /// a member function
9  void example();
10 };
11 
12 /*! \mainpage
13  * \dontinclude example_test.cpp
14  * Our main function starts like this:
15  * \skip main
16  * \until {
17  * First we create a object \c t of the Test class.
18  * \skipline Test
19  * Then we call the example member function
20  * \line example
21  * After that our little test routine ends.
22  * \line }
23  */
A Test class.
Definition: class.h:3
void example()
a member function
Definition: 025_example.cpp:20