test

Revision:
3:807b4a107606
Parent:
2:1ce132ebf775
Child:
4:df66f4e4b472
--- a/Documentation.h	Wed Nov 16 02:28:17 2011 +0000
+++ b/Documentation.h	Wed Nov 16 02:30:31 2011 +0000
@@ -1,18 +1,20 @@
-/**
-* Documentation sample
-*/
-
-class Documentation {
-public:
-    /**
-    * @param a input parameer
-    * @returns a random int value
-    */
-    int foo(int a);
-
-    /***/
-    enum {
-        A, /** first letter */
-        B, /** second letter */
-    };
+/**
+* Documentation sample
+*/
+
+class Documentation {
+public:
+    /**
+    * @param a input parameer
+    * @returns a random int value
+    */
+    int foo(int a);
+
+    /**
+    * enum declaration
+    */
+    enum {
+        A, /** first letter */
+        B /** second letter */
+    };
 };
\ No newline at end of file