Blame testing/021_dontinclude.cpp

Packit Service 50c9f2
// objective: test the \dontinclude, \skip, \until, \skipline, \line commands
Packit Service 50c9f2
// check: indexpage.xml
Packit Service 50c9f2
/*! A test class. */
Packit Service 50c9f2
Packit Service 50c9f2
class Test
Packit Service 50c9f2
{
Packit Service 50c9f2
  public:
Packit Service 50c9f2
    /// a member function
Packit Service 50c9f2
    void example();
Packit Service 50c9f2
};
Packit Service 50c9f2
Packit Service 50c9f2
/*! \mainpage
Packit Service 50c9f2
 *  \dontinclude example_test.cpp
Packit Service 50c9f2
 *  Our main function starts like this:
Packit Service 50c9f2
 *  \skip main
Packit Service 50c9f2
 *  \until {
Packit Service 50c9f2
 *  First we create a object \c t of the Test class.
Packit Service 50c9f2
 *  \skipline Test
Packit Service 50c9f2
 *  Then we call the example member function 
Packit Service 50c9f2
 *  \line example
Packit Service 50c9f2
 *  After that our little test routine ends.
Packit Service 50c9f2
 *  \line }
Packit Service 50c9f2
 */