1 /*
2  * gdsreader - simple Calma parser/printer tool
3  * Copyright (C) 1999 Serban-Mihai Popescu, serbanp@ix.netcom.com
4  *
5  * This program is free software; you can redistribute it and/or modify
6  * it under the terms of the GNU General Public License as published by
7  * the Free Software Foundation; either version 2 of the License, or
8  * (at your option) any later version.
9  *
10  * This program is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13  * GNU General Public License for more details.
14  *
15  * You should have received a copy of the GNU General Public License
16  * along with this program; if not, write to the Free Software
17  * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
18  */
19 #include <stdio.h>
20 #include <stdlib.h>
21 #include <strings.h>
22 
23 #include <GDSstructs.h>
24 #include <GDSconsts.h>
25 #include <GDSaux.h>
26 
27 void
NodeToHPGL(FILE * hpglfile,nodeEl * node,PSStyle psStyle)28 NodeToHPGL(FILE *hpglfile, nodeEl *node, PSStyle psStyle)
29 {
30   return;
31 }
32 
33 void
NodeToPS(FILE * psfile,nodeEl * node,PSStyle psStyle)34 NodeToPS(FILE *psfile, nodeEl *node, PSStyle psStyle)
35 {
36   return;
37 }
38 
39 void
NodeToPOV(FILE * povfile,nodeEl * node,PSStyle psStyle)40 NodeToPOV(FILE *povfile, nodeEl *node, PSStyle psStyle)
41 {
42   fprintf(povfile,"// Node pov-printing not yet implemented.\n");
43   return;
44 }
45 
46 void
GDSfreeNode(GDScell * cell)47 GDSfreeNode(GDScell *cell)
48 {
49   fprintf(stderr, "NOT YET IMPLEMENTED\n");
50 }
51 
52 GDScell *
GDSdupNode(nodeEl * node)53 GDSdupNode(nodeEl *node)
54 {
55   fprintf(stderr, "NOT YET IMPLEMENTED\n");
56   return NULL;
57 }
58 
59 GDScell *
GDSreadNode(int gdsfildes,GDSstruct * structptr)60 GDSreadNode(int gdsfildes, GDSstruct *structptr)
61 {
62   fprintf(stderr, "READING NODE NOT YET IMPLEMENTED\n");
63   return NULL;
64 }
65