summaryrefslogtreecommitdiffstats
path: root/testing/021_dontinclude.cpp
blob: 9fea1c6448d90105ff52f29ed0a62939a2dff73a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
// objective: test the \dontinclude, \skip, \until, \skipline, \line commands
// check: indexpage.xml
// config: EXAMPLE_PATH = .
/*! A test class. */

class Test
{
  public:
    /// a member function
    void example();
};

/*! \mainpage
 *  \dontinclude 021_dontinclude.cpp
 *  Our main function starts like this:
 *  \skip main
 *  \until {
 *  First we create a object \c t of the Test class.
 *  \skipline Test
 *  Then we call the example member function 
 *  \line example
 *  After that our little test routine ends.
 *  \line }
 */