From 6ccee86a9356cd75ce96515af2ffab636d22dc6c Mon Sep 17 00:00:00 2001 From: dickelbeck Date: Mon, 5 May 2008 19:50:15 +0000 Subject: [PATCH] fillBOUNDARY to separate function --- pcbnew/specctra.h | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/pcbnew/specctra.h b/pcbnew/specctra.h index 4f649f5aa3..7982a69cbe 100644 --- a/pcbnew/specctra.h +++ b/pcbnew/specctra.h @@ -3802,6 +3802,16 @@ class SPECCTRA_DB : public OUTPUTFORMATTER void doNET_OUT( NET_OUT* growth ) throw( IOError ); void doSUPPLY_PIN( SUPPLY_PIN* growth ) throw( IOError ); + //------------------------------------------------------------ + + /** + * Function makeBOUNDARY + * makes the board perimeter for the DSN file. + * @param aBoard The BOARD to get information from in order to make the BOUNDARY. + * @param aBoundary The empty BOUNDARY to fill in. + */ + void fillBOUNDARY( BOARD* aBoard, BOUNDARY* aBoundary ) throw( IOError ); + /** * Function makeIMAGE @@ -3857,6 +3867,7 @@ class SPECCTRA_DB : public OUTPUTFORMATTER nets.clear(); } + //----------------------------------------------------------- //----------------------------------------------------------