1 | #ifndef _TEST_H_ |
---|---|
2 | #define _TEST_H_ |
3 | |
4 | |
5 | /* |
6 | test code http://www.csdn.net |
7 | */ |
8 | |
9 | // test comment |
10 | namespace TXT { |
11 | class Test{ |
12 | public: |
13 | void init(); |
14 | static int test_static(); |
15 | public: |
16 | std::string cc; |
17 | static int dd; |
18 | int ee; |
19 | }; |
20 | |
21 | } |
22 | |
23 | #endif // _TEST_H_ |