Adding PCB_GROUP to python interface

This commit is contained in:
Jean-Samuel Reynaud 2021-03-03 12:48:48 +01:00 committed by Ian McInerney
parent 5395a7fe67
commit e2e963d14a
2 changed files with 7 additions and 0 deletions

View File

@ -62,6 +62,7 @@ HANDLE_EXCEPTIONS(BOARD::TracksInNetBetweenPoints)
%include netinfo.i
%include netclass.i
%include pcb_plot_params.i
%include pcb_group.i
// std::vector templates
%template(VIA_DIMENSION_Vector) std::vector<VIA_DIMENSION>;

6
pcbnew/swig/pcb_group.i Normal file
View File

@ -0,0 +1,6 @@
%include pcb_group.h
%{
#include <pcb_group.h>
%}