Fix compil issue in Python support.

This commit is contained in:
jean-pierre charras 2017-05-01 14:19:38 +02:00
parent afe92c7bfc
commit c8706e9c15
5 changed files with 10 additions and 3 deletions

View File

@ -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>

View File

@ -51,7 +51,7 @@ private:
public:
EXCELLON_WRITER( BOARD* aPcb );
~EXCELLON_WRITER()
virtual ~EXCELLON_WRITER()
{
}

View File

@ -163,7 +163,7 @@ protected:
}
public:
~GENDRILL_WRITER_BASE()
virtual ~GENDRILL_WRITER_BASE()
{
}

View File

@ -42,7 +42,7 @@ class GERBER_WRITER: public GENDRILL_WRITER_BASE
public:
GERBER_WRITER( BOARD* aPcb );
~GERBER_WRITER()
virtual ~GERBER_WRITER()
{
}

View File

@ -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>