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