Index: trunk/scconfig/Rev.h =================================================================== --- trunk/scconfig/Rev.h (revision 10678) +++ trunk/scconfig/Rev.h (revision 10679) @@ -1 +1 @@ -static const int myrev = 10672; +static const int myrev = 10679; Index: trunk/scconfig/Rev.tab =================================================================== --- trunk/scconfig/Rev.tab (revision 10678) +++ trunk/scconfig/Rev.tab (revision 10679) @@ -1,3 +1,4 @@ +10679 configure infra for new core feature: subcircuit terminal 10672 configure switching over to libuundo 10662 configure split undo code, preparing for a more modular undo 10356 configure move genht out of liblihata Index: trunk/src/Makefile.in =================================================================== --- trunk/src/Makefile.in (revision 10678) +++ trunk/src/Makefile.in (revision 10679) @@ -106,6 +106,7 @@ obj_rat_list.o obj_subc.o obj_subc_list.o + obj_term.o obj_text.o obj_text_list.o operation.o Index: trunk/src/obj_term.c =================================================================== --- trunk/src/obj_term.c (nonexistent) +++ trunk/src/obj_term.c (revision 10679) @@ -0,0 +1,27 @@ +/* + * COPYRIGHT + * + * pcb-rnd, interactive printed circuit board design + * Copyright (C) 2017 Tibor 'Igor2' Palinkas + * + * This module, rats.c, was written and is Copyright (C) 1997 by harry eaton + * this module is also subject to the GNU GPL as described below + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 2 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. + * + */ + +#include "config.h" + Index: trunk/src/obj_term.h =================================================================== --- trunk/src/obj_term.h (nonexistent) +++ trunk/src/obj_term.h (revision 10679) @@ -0,0 +1,34 @@ +/* + * COPYRIGHT + * + * pcb-rnd, interactive printed circuit board design + * Copyright (C) 2017 Tibor 'Igor2' Palinkas + * + * This module, rats.c, was written and is Copyright (C) 1997 by harry eaton + * this module is also subject to the GNU GPL as described below + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 2 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. + * + */ + +/* Terminals: within a subcircuit, a terminal is a point of netlist connection. + Subcircuit objects can be tagged to belong to a terminal, by terminal ID + (similar tothe old pin number concept). */ + +#ifndef PCB_OBJ_TERM_H +#define PCB_OBJ_TERM_H + + +#endif