Imported Upstream version 1.8.15
[platform/upstream/doxygen.git] / examples / include.cpp
1
2 /*! A test class. */
3
4 class Include_Test
5 {
6   public:
7     /// a member function
8     void example();
9 };
10
11 /*! \page pag_example
12  *  \dontinclude include_test.cpp
13  *  Our main function starts like this:
14  *  \skip main
15  *  \until {
16  *  First we create an object \c t of the Include_Test class.
17  *  \skipline Include_Test
18  *  Then we call the example member function 
19  *  \line example
20  *  After that our little test routine ends.
21  *  \line }
22  */