import source from 1.3.40
[external/swig.git] / Examples / test-suite / clientdata_prop_a.h
1
2 class A {
3   public:
4     void fA() {}
5 };
6
7 typedef A tA;
8
9 void test_A(A *a) {}
10 void test_tA(tA *a) {}
11
12 tA *new_tA() { return new tA(); }