We ignore these operators since they don't exist in C#

This commit is contained in:
Matt Williams 2013-01-04 12:03:38 +00:00
parent 1f466d4931
commit a5d55d4415

View File

@ -61,6 +61,14 @@ EXTRACTOR(shortname, LargeVolume)
//This will rename "operator=" to "assign" since Python doesn't have assignment //This will rename "operator=" to "assign" since Python doesn't have assignment
%rename(assign) *::operator=; %rename(assign) *::operator=;
#endif #endif
#ifdef SWIGCSHARP
//These operators are not wrappable in C# and their function is provided by other means
%ignore *::operator=;
%ignore *::operator+=;
%ignore *::operator-=;
%ignore *::operator*=;
%ignore *::operator/=;
#endif
%include "stdint.i" %include "stdint.i"
%include "std_vector.i" %include "std_vector.i"