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