00001
00002
00003
00004
00005
00006
00007
00008 #ifndef ARCNETACTUATOR_H_
00009 #define ARCNETACTUATOR_H_
00010
00011 #include "ArcnetNode.h"
00012
00013 namespace cosi {
00014
00015 namespace library {
00016
00017 namespace wiredbas {
00018
00019 class ArcnetActuator : public cosi::library::wiredbas::ArcnetNode {
00020 public:
00021 ArcnetActuator();
00022 virtual ~ArcnetActuator();
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 double GetCost();
00029 RealDelay GetDelay(Vertex NodeId,
00030 cosi::commstruct::wiredbas::Implementation* pI, Vertex Src,
00031 Vertex Dest) ;
00032 double GetDelayValue(Vertex NodeId,
00033 cosi::commstruct::wiredbas::Implementation* pI, Vertex Src,
00034 Vertex Dest);
00035
00036 static std::string ComponentName;
00037 static std::string ComponentType;
00038 };
00039
00040 }
00041
00042 }
00043
00044 }
00045
00046 #endif