home *** CD-ROM | disk | FTP | other *** search
/ PC Elektro 3 / PC-Elektro-3-cd1.bin / KBan 2.0 / KBANSRC.LZH / SRC / PROG / NETLIST / NETLIST.H < prev    next >
Encoding:
C/C++ Source or Header  |  1997-08-23  |  398 b   |  17 lines

  1. // the declaration of netlist-related functions
  2. // Copyright (C) 1997 Kazutaka Hirata <khirata@jove.acs.unt.edu>
  3.  
  4. #ifndef _NETLIST_H_
  5. #define _NETLIST_H_
  6.  
  7. #include "../kbandata/kbandata.h"
  8.  
  9. class NETLIST_ERROR {
  10. public:
  11.     virtual void not_distinct(const char* comp_name);
  12. };
  13.  
  14. void output_netlist(NETLIST_ERROR& ne, const char* fname, KBAN_DATA& kban_data);
  15.  
  16. #endif /* _NETLIST_H_ */
  17.