git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk/SWIG@6673 626c5289-ae23-0410-ae9c-e8d60b6d4f22
This commit is contained in:
William S Fulton 2004-11-05 23:17:59 +00:00
commit 5fd5da5dba
2 changed files with 8 additions and 1 deletions

View file

@ -11,6 +11,10 @@ It tests basic multiple inheritance */
#pragma SWIG nowarn=813; // Java doesn't support multiple inheritance
#endif
#ifdef SWIGCSHARP
#pragma SWIG nowarn=833; // C# doesn't support multiple inheritance
#endif
%inline %{
class Bar {

View file

@ -1,5 +1,5 @@
%module template_opaque
%include std_vector.i
%include "std_vector.i"
%{
namespace A
@ -35,4 +35,7 @@ namespace A {
}
}
#ifndef SWIGCSHARP
// C# vector typemaps only ready for simple cases right now
%template(OpaqueVectorType) std::vector<A::OpaqueType>;
#endif