Matt Williams 7ee913c8a8 Fix the SWIG warning in the SWIG interface files
This keeps the .cpp and .h files clean.
2013-07-22 16:10:31 +01:00

16 lines
184 B
OpenEdge ABL

%module Region
%{
#define SWIG_DAVID
#include "Region.h"
%}
%extend PolyVox::Region {
STR()
};
%ignore depth;
%ignore height;
%ignore width;
%ignore dimensions;
%include "Region.h"