| 1 | #include "testa.h" |
|---|---|
| 2 | |
| 3 | namespace TXT { |
| 4 | void TestAA::initAA(int c) { |
| 5 | aacc = "nihaoAA"; |
| 6 | aadd = c; |
| 7 | } |
| 8 | |
| 9 | int TestAA::test_staticAA() { |
| 10 | ee = 110; |
| 11 | } |
| 12 | |
| 13 | void TestA::initA(int c) { |
| 14 | acc = "nihao"; |
| 15 | add = c; |
| 16 | } |
| 17 | |
| 18 | int TestA::test_staticA() { |
| 19 | ee = 110; |
| 20 | } |
| 21 | |
| 22 | } |