|
libraries/onchipcommunication/systemc/Types.hGo to the documentation of this file.00001 //============================================================================ 00002 // Author : Alessandro Pinto <apinto@eecs.berkeley.edu> 00003 // University of California, Berkeley 00004 // 545 Cory Hall, Berkeley, CA 94720 00005 // Copyright : See COPYING file that comes with this distribution 00006 //============================================================================ 00007 00008 #ifndef TYPES_H_ 00009 #define TYPES_H_ 00010 00011 #include <map> 00012 00013 using namespace std ; 00014 00015 typedef struct s_Flow { 00016 00017 int PacketSize ; 00018 int Destination ; 00019 double Bandwidth ; 00020 00021 } Flow ; 00022 00023 typedef map< pair<int,int> , int > RoutingTable ; 00024 00025 00026 #endif Generated on Sun Sep 7 18:37:42 2008 for COSI by 1.5.4 |