Clang Project

test_code/sub_test/test.h
1   #ifndef _TEST_H_
2   #define _TEST_H_
3
4
5/*
6 test code http://www.csdn.net
7*/
8
9// test comment
10namespace 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_
TXT::Test::init
TXT::Test::test_static
TXT::Test::dd
TXT::Test::ee