swig/Examples/test-suite/smart_pointer_namespace.i
Dave Beazley 7db499562b new tests
git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk/SWIG@5175 626c5289-ae23-0410-ae9c-e8d60b6d4f22
2003-10-01 21:55:26 +00:00

78 lines
1 KiB
OpenEdge ABL

%module smart_pointer_namespace
%{
namespace one
{
template <typename T>
class Ptr
{
T* p;
public:
Ptr(T *tp) : p(tp) {}
~Ptr() { };
T* operator->() { return p; }
};
}
namespace one
{
class Obj1
{
public:
Obj1() {}
void donothing() {}
};
typedef one::Ptr<Obj1> Obj1_ptr;
}
namespace two
{
class Obj2
{
public:
Obj2() {}
void donothing() {}
};
typedef one::Ptr<Obj2> Obj2_ptr;
}
%}
namespace one
{
template <typename T>
class Ptr
{
T* p;
public:
Ptr(T *tp) : p(tp) {}
~Ptr() { };
T* operator->() { return p; }
};
}
namespace one
{
class Obj1
{
public:
Obj1() {}
void donothing() {}
};
typedef one::Ptr<Obj1> Obj1;
}
%template(Obj1_ptr) one::Ptr<one::Obj1>;
namespace two
{
class Obj2
{
public:
Obj2() {}
void donothing() {}
};
typedef one::Ptr<Obj2> Obj2;
}
%template(Obj2_ptr) one::Ptr<two::Obj2>;