|
networks/wiredbas/WiredBasPlatformInstance.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 WIREDBASPLATFORMINSTANCE_H_ 00010 #define WIREDBASPLATFORMINSTANCE_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/WiringPath.h" 00018 #include "label/Label.hpp" 00019 #include "core/CommunicationStructure.hpp" 00020 00021 namespace cosi 00022 { 00023 namespace commstruct { 00024 00025 namespace wiredbas { 00026 00027 typedef Label_5<Name,Type,Position,Ports,WiringPath> PlatformLabel; 00028 00029 class PlatformInstance : public CommunicationStructure< PlatformLabel > 00030 { 00031 public: 00032 PlatformInstance(std::string pName); 00033 ~PlatformInstance(); 00034 PlatformInstance operator+(PlatformInstance pC) ; 00035 }; 00036 00037 } 00038 00039 } 00040 } 00041 00042 #endif /*WIREDBASPLATFORMINSTANCE_H_*/ Generated on Sun Sep 7 18:37:42 2008 for COSI by 1.5.4 |