Main Page   Alphabetical List   Compound List   File List   Compound Members   File Members  

module.h

Go to the documentation of this file.
00001 #ifndef MODULE_H
00002 #define MODULE_H
00003 
00004 //-------------------------------------module.h--------------------------------
00005 //
00006 //    NEREK by Chad Rempp
00007 //    March 1 2002
00008 //    Version 0.0.02
00009 //
00010 //    Module Class
00011 //    In the first implementation a module is a linked list of nets
00012 //
00013 //------------------------------------------------------------------------------
00014 
00015 #include "net.h"
00016 
00017 class Module{
00018 private:
00019     int n_NumNets;
00020     vector<Net> n_vecNets;
00021 public:
00022     Module();
00023     void AddNet();
00024     void DelNet();
00025 };
00026 
00027 #endif

Generated on Mon Jun 23 23:09:51 2003 for NeReK Documentation by doxygen1.2.14 written by Dimitri van Heesch, © 1997-2002