Move samename test to common.

git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk@10370 626c5289-ae23-0410-ae9c-e8d60b6d4f22
This commit is contained in:
Xavier Delacour 2008-04-12 13:49:01 +00:00
commit 2ad4024977
4 changed files with 18 additions and 18 deletions

View file

@ -0,0 +1,13 @@
%module samename
%inline {
class samename {
public:
void do_something() {
// ...
}
};
}