summaryrefslogtreecommitdiffstats
path: root/examples/example.cpp
blob: 657c266502100efcb15fd912514ff030fa396a1f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
/** A Example_Test class.
 *  More details about this class.
 */

class Example_Test
{
  public:
    /** An example member function.
     *  More details about this function.
     */
    void example();
};

void Example_Test::example() {}

/** \example example_test.cpp
 * This is an example of how to use the Example_Test class.
 * More details about this example.
 */