Default STEP export to board only
[geda-pcb/pcjc2/v2.git] / src / insert.h
blob9d403b04949853cf18d8f3ef0c3cce4aa798696e
1 /*!
2 * \file src/insert.h
4 * \brief Prototypes for inserting points into objects.
6 * <hr>
8 * <h1><b>Copyright.</b></h1>\n
10 * PCB, interactive printed circuit board design
11 * Copyright (C) 1994,1995,1996 Thomas Nau
13 * This program is free software; you can redistribute it and/or modify
14 * it under the terms of the GNU General Public License as published by
15 * the Free Software Foundation; either version 2 of the License, or
16 * (at your option) any later version.
18 * This program is distributed in the hope that it will be useful,
19 * but WITHOUT ANY WARRANTY; without even the implied warranty of
20 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21 * GNU General Public License for more details.
23 * You should have received a copy of the GNU General Public License
24 * along with this program; if not, write to the Free Software
25 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
27 * Contact addresses for paper mail and Email:
28 * Thomas Nau, Schlehenweg 15, 88471 Baustetten, Germany
29 * Thomas.Nau@rz.uni-ulm.de
33 #ifndef PCB_INSERT_H
34 #define PCB_INSERT_H
36 #include "global.h"
38 #define INSERT_TYPES (POLYGON_TYPE | LINE_TYPE | RATLINE_TYPE)
40 /* ---------------------------------------------------------------------------
41 * prototypes
43 void *InsertPointIntoObject (int, void *, void *, Cardinal *, Coord,
44 Coord, Angle, bool, bool);
45 PointType * AdjustInsertPoint (void);
47 #endif