test

Committer:
yamaguch
Date:
Wed Nov 16 02:35:25 2011 +0000
Revision:
6:a4f77b948f7d
Parent:
5:1cccca6f4fcd
Child:
7:7cea334c0d34
05

Who changed what in which revision?

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