mirror of
https://gitlab.com/kicad/code/kicad.git
synced 2025-09-15 02:33:15 +02:00
17 lines
429 B
C
17 lines
429 B
C
#ifndef __PCBNEW_SCRIPTING_HELPERS_H
|
|
#define __PCBNEW_SCRIPTING_HELPERS_H
|
|
|
|
#include <wxPcbStruct.h>
|
|
|
|
/* we could be including all these methods as static in a class, but
|
|
* we want plain pcbnew.<method_name> access from python */
|
|
|
|
#ifndef SWIG
|
|
void ScriptingSetPcbEditFrame(PCB_EDIT_FRAME *aPCBEdaFrame);
|
|
#endif
|
|
|
|
BOARD *GetBoard();
|
|
BOARD* LoadBoard(wxString aFileName);
|
|
bool SaveBoard(wxString aFileName, BOARD* aBoard);
|
|
|
|
#endif |