|
networks/onchipcommunication/Specification.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 00009 #ifndef SPECIFICATION_H_ 00010 #define SPECIFICATION_H_ 00011 00012 #include <string> 00013 00014 #include "quantities/Name.h" 00015 #include "quantities/Position.h" 00016 #include "quantities/onchipcommunication/Ports.h" 00017 #include "quantities/RealLatency.h" 00018 #include "quantities/CommoditySet.h" 00019 #include "quantities/onchipcommunication/IpGeometry.h" 00020 #include "label/Label.hpp" 00021 #include "core/CommunicationStructure.hpp" 00022 00023 namespace cosi { 00024 00025 namespace commstruct { 00026 00027 namespace onchipcommunication { 00028 00036 typedef Label_5<Name,cosi::quantity::onchipcommunication::Ports,Position,cosi::quantity::onchipcommunication::IpGeometry,CommoditySet> SpecificationLabel; 00037 00038 class Specification : public CommunicationStructure< SpecificationLabel > { 00039 public: 00040 Specification(std::string pName); 00041 virtual ~Specification(); 00042 Specification operator+(Specification pC); 00043 00044 }; 00045 00046 } 00047 00048 } 00049 00050 } 00051 00052 #endif /*SPECIFICATION_H_*/ Generated on Sun Sep 7 18:37:42 2008 for COSI by 1.5.4 |