Orb/Doxygen/examples/example.cpp
changeset 3 d8fccb2cd802
parent 0 42188c7ea2d9
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/Orb/Doxygen/examples/example.cpp	Fri Apr 23 20:47:58 2010 +0100
@@ -0,0 +1,19 @@
+/** A Test class.
+ *  More details about this class.
+ */
+
+class Test
+{
+  public:
+    /** An example member function.
+     *  More details about this function.
+     */
+    void example();
+};
+
+void Test::example() {}
+
+/** \example example_test.cpp
+ * This is an example of how to use the Test class.
+ * More details about this example.
+ */