This is a part of the pending merge of the D module. git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk@12298 626c5289-ae23-0410-ae9c-e8d60b6d4f22
22 lines
237 B
OpenEdge ABL
22 lines
237 B
OpenEdge ABL
%module samename
|
|
|
|
#if !(defined(SWIGCSHARP) || defined(SWIGJAVA) || defined(SWIGD))
|
|
class samename {
|
|
public:
|
|
void do_something() {
|
|
// ...
|
|
}
|
|
};
|
|
#endif
|
|
|
|
%{
|
|
|
|
class samename {
|
|
public:
|
|
void do_something() {
|
|
// ...
|
|
}
|
|
};
|
|
|
|
%}
|
|
|