git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk/SWIG@6357 626c5289-ae23-0410-ae9c-e8d60b6d4f22
12 lines
136 B
C++
12 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(); }
|