1 | #ifndef _TESTA_H_ |
---|---|
2 | #define _TESTA_H_ |
3 | |
4 | /* |
5 | test code http://www.csdn.net |
6 | */ |
7 | |
8 | // test comment |
9 | namespace TXT { |
10 | class TestAA{ |
11 | public: |
12 | void initAA(int c); |
13 | static int test_staticAA(); |
14 | public: |
15 | int aadd; |
16 | }; |
17 | |
18 | class TestA{ |
19 | public: |
20 | void initA(int c); |
21 | static int test_staticA(); |
22 | public: |
23 | int add; |
24 | }; |
25 | |
26 | } |
27 | |
28 | #endif // _TESTA_H_ |