|
models/onchipcommunication/common/DelayModel.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 DELAYMODEL_H_ 00009 #define DELAYMODEL_H_ 00010 00011 #include <map> 00012 #include <set> 00013 #include "quantities/WiringPath.h" 00014 #include "quantities/onchipcommunication/LinkParameter.h" 00015 #include "quantities/onchipcommunication/Interface.h" 00016 #include "quantities/onchipcommunication/NodeParameter.h" 00017 #include "quantities/onchipcommunication/Ports.h" 00018 #include "quantities/CommoditySet.h" 00019 #include "quantities/Name.h" 00020 00021 namespace cosi { 00022 00023 namespace models { 00024 00025 namespace onchipcommunication { 00026 00027 class LinkDelayModel { 00028 public: 00029 LinkDelayModel(); 00030 virtual ~LinkDelayModel(); 00031 virtual double GetDelay(Name pName, 00032 cosi::quantity::onchipcommunication::Interface pSource, 00033 cosi::quantity::onchipcommunication::Interface pDest, 00034 WiringPath pPath, cosi::quantity::onchipcommunication::LinkParameter pParam) = 0; 00035 }; 00036 00037 } 00038 00039 } 00040 00041 } 00042 00043 #endif /*DELAYMODEL_H_*/ Generated on Sun Sep 7 18:37:42 2008 for COSI by 1.5.4 |