9fea1c6448d90105ff52f29ed0a62939a2dff73a
[platform/upstream/doxygen.git] / testing / 021_dontinclude.cpp
1 // objective: test the \dontinclude, \skip, \until, \skipline, \line commands
2 // check: indexpage.xml
3 // config: EXAMPLE_PATH = .
4 /*! A test class. */
5
6 class Test
7 {
8   public:
9     /// a member function
10     void example();
11 };
12
13 /*! \mainpage
14  *  \dontinclude 021_dontinclude.cpp
15  *  Our main function starts like this:
16  *  \skip main
17  *  \until {
18  *  First we create a object \c t of the Test class.
19  *  \skipline Test
20  *  Then we call the example member function 
21  *  \line example
22  *  After that our little test routine ends.
23  *  \line }
24  */