00001
00002
00003
00004
00005
00006
00007
00008 #ifndef ARCNETROUTER_H_
00009 #define ARCNETROUTER_H_
00010
00011 #include "ArcnetNode.h"
00012
00013 namespace cosi {
00014
00015 namespace library {
00016
00017 namespace wiredbas {
00018
00019 class ArcnetRouter : public cosi::library::wiredbas::ArcnetNode {
00020 public:
00021 ArcnetRouter();
00022 virtual ~ArcnetRouter();
00023 cosi::commstruct::wiredbas::PlatformInstance* GetPlatformInstance(int V,
00024 Position pP);
00025 cosi::commstruct::wiredbas::Implementation* GetImplementationInstance(
00026 int V, Position pP, ThreadSet pThreads, TransferTable pT);
00027
00028
00029
00030 double GetCost();
00031
00032 RealDelay GetDelay(Vertex NodeId,
00033 cosi::commstruct::wiredbas::Implementation* pI, Vertex Src,
00034 Vertex Dest) ;
00035 double GetDelayValue(Vertex NodeId,
00036 cosi::commstruct::wiredbas::Implementation* pI, Vertex Src,
00037 Vertex Dest);
00038
00039 static std::string ComponentName;
00040 static std::string ComponentType;
00041 };
00042
00043 }
00044
00045 }
00046
00047 }
00048
00049 #endif