summaryrefslogtreecommitdiffstats
path: root/examples/include.cpp
blob: ba8c0544cf53f329966d7e594ec8f89fe38b124f (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 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 }
 */