Fix compil issue in Python support.
This commit is contained in:
parent
afe92c7bfc
commit
c8706e9c15
|
@ -130,6 +130,9 @@ principle should be easily implemented by adapting the current STL containers.
|
|||
#include <../polygon/PolyLine.h>
|
||||
%include <../polygon/PolyLine.h>
|
||||
|
||||
#include <geometry/shape.h>
|
||||
%include <geometry/shape.h>
|
||||
|
||||
#include <geometry/shape_poly_set.h>
|
||||
%include <geometry/shape_poly_set.h>
|
||||
|
||||
|
|
|
@ -51,7 +51,7 @@ private:
|
|||
public:
|
||||
EXCELLON_WRITER( BOARD* aPcb );
|
||||
|
||||
~EXCELLON_WRITER()
|
||||
virtual ~EXCELLON_WRITER()
|
||||
{
|
||||
}
|
||||
|
||||
|
|
|
@ -163,7 +163,7 @@ protected:
|
|||
}
|
||||
|
||||
public:
|
||||
~GENDRILL_WRITER_BASE()
|
||||
virtual ~GENDRILL_WRITER_BASE()
|
||||
{
|
||||
}
|
||||
|
||||
|
|
|
@ -42,7 +42,7 @@ class GERBER_WRITER: public GENDRILL_WRITER_BASE
|
|||
public:
|
||||
GERBER_WRITER( BOARD* aPcb );
|
||||
|
||||
~GERBER_WRITER()
|
||||
virtual ~GERBER_WRITER()
|
||||
{
|
||||
}
|
||||
|
||||
|
|
|
@ -65,7 +65,9 @@ class BASE_SET {};
|
|||
|
||||
#include <plotcontroller.h>
|
||||
#include <pcb_plot_params.h>
|
||||
#include <exporters/gendrill_file_writer_base.h>
|
||||
#include <exporters/gendrill_Excellon_writer.h>
|
||||
#include <exporters/gendrill_gerber_writer.h>
|
||||
|
||||
BOARD *GetBoard(); /* get current editor board */
|
||||
%}
|
||||
|
@ -102,7 +104,9 @@ HANDLE_EXCEPTIONS(PLUGIN::FootprintDelete)
|
|||
%include <plotcontroller.h>
|
||||
%include <pcb_plot_params.h>
|
||||
%include <plot_common.h>
|
||||
%include <exporters/gendrill_file_writer_base.h>
|
||||
%include <exporters/gendrill_Excellon_writer.h>
|
||||
%include <exporters/gendrill_gerber_writer.h>
|
||||
%include <gal/color4d.h>
|
||||
%include <id.h>
|
||||
|
||||
|
|
Loading…
Reference in New Issue