| 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 | static int dd; |
| 17 | int ee; |
| 18 | }; |
| 19 | |
| 20 | } |
| 21 | |
| 22 | #endif // _TEST_H_ |