test

Committer:
yamaguch
Date:
Wed Nov 16 02:27:29 2011 +0000
Revision:
1:7bb9eb1972ae
Parent:
0:203a08585f1c
Child:
2:1ce132ebf775
0.1

Who changed what in which revision?

UserRevisionLine numberNew contents of line
yamaguch 0:203a08585f1c 1 /**
yamaguch 0:203a08585f1c 2 * Documentation sample
yamaguch 0:203a08585f1c 3 */
yamaguch 0:203a08585f1c 4
yamaguch 0:203a08585f1c 5 class Documentation {
yamaguch 1:7bb9eb1972ae 6 public:
yamaguch 0:203a08585f1c 7 /**
yamaguch 0:203a08585f1c 8 * @param a input parameer
yamaguch 0:203a08585f1c 9 * @returns a random int value
yamaguch 0:203a08585f1c 10 */
yamaguch 1:7bb9eb1972ae 11 int foo(int a);
yamaguch 1:7bb9eb1972ae 12
yamaguch 1:7bb9eb1972ae 13 /***/
yamaguch 1:7bb9eb1972ae 14 enum {
yamaguch 1:7bb9eb1972ae 15 A, /** first letter */
yamaguch 1:7bb9eb1972ae 16 B, /** second letter */
yamaguch 1:7bb9eb1972ae 17 }
yamaguch 0:203a08585f1c 18 };