Remove unneeded headers from pcbnew_scripting_helpers.h
This commit is contained in:
parent
ddd2cb005b
commit
aacf8f50bf
|
@ -30,7 +30,7 @@
|
||||||
#ifndef GERBER_JOBFILE_WRITER_H
|
#ifndef GERBER_JOBFILE_WRITER_H
|
||||||
#define GERBER_JOBFILE_WRITER_H
|
#define GERBER_JOBFILE_WRITER_H
|
||||||
|
|
||||||
#include <nlohmann/json_fwd.hpp>
|
#include <nlohmann/json.hpp>
|
||||||
|
|
||||||
|
|
||||||
// A helper enum to handle sides of some layers (silk, mask)
|
// A helper enum to handle sides of some layers (silk, mask)
|
||||||
|
|
|
@ -25,9 +25,15 @@
|
||||||
#ifndef __PCBNEW_SCRIPTING_HELPERS_H
|
#ifndef __PCBNEW_SCRIPTING_HELPERS_H
|
||||||
#define __PCBNEW_SCRIPTING_HELPERS_H
|
#define __PCBNEW_SCRIPTING_HELPERS_H
|
||||||
|
|
||||||
#include <pcb_edit_frame.h>
|
#include <deque>
|
||||||
#include <io_mgr.h>
|
#include <io_mgr.h>
|
||||||
|
|
||||||
|
class PCB_EDIT_FRAME;
|
||||||
|
class BOARD;
|
||||||
|
class SETTINGS_MANAGER;
|
||||||
|
class BOARD_ITEM;
|
||||||
|
enum class EDA_UNITS;
|
||||||
|
|
||||||
/* we could be including all these methods as static in a class, but
|
/* we could be including all these methods as static in a class, but
|
||||||
* we want plain pcbnew.<method_name> access from python
|
* we want plain pcbnew.<method_name> access from python
|
||||||
*/
|
*/
|
||||||
|
|
Loading…
Reference in New Issue