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