|
models/onchipcommunication/node/BusDelayModel.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 BUSDELAYMODEL_H_ 00009 #define BUSDELAYMODEL_H_ 00010 00011 #include <vector> 00012 #include "include/onchipcommunication/typedefs.h" 00013 #include "quantities/onchipcommunication/Ports.h" 00014 #include "quantities/onchipcommunication/NodeParameter.h" 00015 00016 namespace cosi 00017 { 00018 00019 namespace models 00020 { 00021 00022 namespace onchipcommunication 00023 { 00024 00025 class BusDelayModel 00026 { 00027 public: 00028 00029 BusDelayModel(); 00030 00031 virtual ~BusDelayModel(); 00032 00033 RealDelay Get(cosi::commstruct::onchipcommunication::Implementation pC); 00034 00035 RealDelay Get(cosi::commstruct::onchipcommunication::Implementation* pC); 00036 00037 double GetValue(cosi::commstruct::onchipcommunication::Implementation pC); 00038 00039 double GetValue(cosi::commstruct::onchipcommunication::Implementation* pC); 00040 00041 }; 00042 00043 } 00044 00045 } 00046 00047 } 00048 00049 #endif /*BUSDELAYMODEL_H_*/ Generated on Sun Sep 7 18:37:42 2008 for COSI by 1.5.4 |