|
networks/onchipcommunication/Implementation.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 IMPLEMENTATION_H_ 00010 #define IMPLEMENTATION_H_ 00011 00012 #include <string> 00013 #include "quantities/Name.h" 00014 #include "quantities/Type.h" 00015 #include "quantities/Position.h" 00016 #include "quantities/onchipcommunication/Ports.h" 00017 #include "quantities/TransferTable.h" 00018 #include "quantities/CommoditySet.h" 00019 #include "quantities/WiringPath.h" 00020 #include "quantities/onchipcommunication/IpGeometry.h" 00021 #include "quantities/onchipcommunication/NodeParameter.h" 00022 #include "quantities/onchipcommunication/LinkParameter.h" 00023 #include "label/Label.hpp" 00024 #include "core/CommunicationStructure.hpp" 00025 00026 namespace cosi 00027 { 00028 00029 namespace commstruct 00030 { 00031 00032 namespace onchipcommunication 00033 { 00034 00042 typedef Label_10<Name,Type, 00043 cosi::quantity::onchipcommunication::Ports,Position, 00044 cosi::quantity::onchipcommunication::IpGeometry, 00045 cosi::quantity::onchipcommunication::NodeParameter, 00046 TransferTable,CommoditySet,WiringPath, 00047 cosi::quantity::onchipcommunication::LinkParameter> 00048 ImplementationLabel; 00049 00050 00051 class Implementation : public CommunicationStructure< ImplementationLabel > 00052 { 00053 public: 00054 Implementation(std::string pName); 00055 virtual ~Implementation(); 00056 Implementation operator+(Implementation pC) ; 00057 }; 00058 00059 } 00060 00061 } 00062 00063 } 00064 00065 #endif /*IMPLEMENTATION_H_*/ Generated on Sun Sep 7 18:37:42 2008 for COSI by 1.5.4 |