Clang Project

test_code/sub_testa/testa.h
1#ifndef _TESTA_H_
2#define _TESTA_H_
3
4/*
5 test code http://www.csdn.net
6*/
7
8// test comment
9namespace 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_
TXT::TestAA::initAA
TXT::TestAA::test_staticAA
TXT::TestAA::aadd
TXT::TestA::initA
TXT::TestA::test_staticA
TXT::TestA::add