add comments in pcbnew_scripting_helpers.h

This commit is contained in:
jean-pierre charras 2017-05-24 21:34:56 +02:00
parent 2100c29a1a
commit 38c8470cdc
1 changed files with 5 additions and 0 deletions

View File

@ -37,11 +37,16 @@ void ScriptingSetPcbEditFrame( PCB_EDIT_FRAME* aPCBEdaFrame );
#endif
// For Python scripts: return the current board.
BOARD* GetBoard();
BOARD* LoadBoard( wxString& aFileName, IO_MGR::PCB_FILE_T aFormat );
// Default LoadBoard() to load .kicad_pcb files:.
BOARD* LoadBoard( wxString& aFileName );
// Boards can be saved only as .kicad_pcb file format,
// so no option to choose the file format.
bool SaveBoard( wxString& aFileName, BOARD* aBoard );
void Refresh();