00001
00002
00003
00004
00005
00006
00007
00008 #ifndef NODECOST_H_
00009 #define NODECOST_H_
00010
00011 #include <string>
00012 #include "quantities/Ports.h"
00013
00014 namespace cosi
00015 {
00016
00017 namespace models
00018 {
00019
00020 namespace wiredbas {
00021
00022 class NodeCost
00023 {
00024 public:
00025 NodeCost();
00026 virtual ~NodeCost();
00027 virtual double GetValue(std::string pComponentName ,
00028 std::string pComponentType ,
00029 Ports pPorts) ;
00030
00031 };
00032
00033 }
00034
00035 }
00036 }
00037
00038 #endif