Files
cpp-thirdparty/winx64/bin/swigwin-4.0.0/Examples/test-suite/clientdata_prop_a.h
2019-08-04 21:38:19 -05:00

13 lines
136 B
C++

class A {
public:
void fA() {}
};
typedef A tA;
void test_A(A *a) {}
void test_tA(tA *a) {}
tA *new_tA() { return new tA(); }