swig/Examples/test-suite/samename.i
William S Fulton e6d50f5d65 Fix samename testcase for c# and java
git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk@10515 626c5289-ae23-0410-ae9c-e8d60b6d4f22
2008-06-02 20:10:40 +00:00

22 lines
219 B
OpenEdge ABL

%module samename
#if !(defined(SWIGCSHARP) || defined(SWIGJAVA))
class samename {
public:
void do_something() {
// ...
}
};
#endif
%{
class samename {
public:
void do_something() {
// ...
}
};
%}