Blame examples/example.cpp

Packit Service 50c9f2
/** A Example_Test class.
Packit Service 50c9f2
 *  More details about this class.
Packit Service 50c9f2
 */
Packit Service 50c9f2
Packit Service 50c9f2
class Example_Test
Packit Service 50c9f2
{
Packit Service 50c9f2
  public:
Packit Service 50c9f2
    /** An example member function.
Packit Service 50c9f2
     *  More details about this function.
Packit Service 50c9f2
     */
Packit Service 50c9f2
    void example();
Packit Service 50c9f2
};
Packit Service 50c9f2
Packit Service 50c9f2
void Example_Test::example() {}
Packit Service 50c9f2
Packit Service 50c9f2
/** \example example_test.cpp
Packit Service 50c9f2
 * This is an example of how to use the Example_Test class.
Packit Service 50c9f2
 * More details about this example.
Packit Service 50c9f2
 */