test

Committer:
yamaguch
Date:
Wed Nov 16 02:28:17 2011 +0000
Revision:
2:1ce132ebf775
Parent:
1:7bb9eb1972ae
Child:
3:807b4a107606
0.2

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 2:1ce132ebf775 17 };
yamaguch 0:203a08585f1c 18 };