Clang Project

Home|test_code/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            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_
MembersX
TXT::TestAA::initAA
TXT::TestAA::test_staticAA
TXT::TestAA::aacc
TXT::TestAA::aadd
TXT::TestA::initA
TXT::TestA::test_staticA
TXT::TestA::acc
TXT::TestA::add
Members
X