adf885b667
Separates the python scripts into those using swig and those needed for other scripting
15 lines
178 B
OpenEdge ABL
15 lines
178 B
OpenEdge ABL
|
|
%include pcb_shape.h
|
|
%extend PCB_SHAPE
|
|
{
|
|
%pythoncode
|
|
%{
|
|
def GetShapeStr(self):
|
|
return self.ShowShape(self.GetShape())
|
|
%}
|
|
}
|
|
%{
|
|
#include <pcb_shape.h>
|
|
%}
|
|
|