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 | std::string aacc; |
16 | int aadd; |
17 | }; |
18 | |
19 | class TestA{ |
20 | public: |
21 | void initA(int c); |
22 | static int test_staticA(); |
23 | public: |
24 | std::string acc; |
25 | int add; |
26 | }; |
27 | |
28 | } |
29 | |
30 | #endif // _TESTA_H_ |
Members