|
libraries/wiredbas/common/Node.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 #ifndef LIBRARIES_WIREDBAS_COMMON_NODE_H_ 00009 #define LIBRARIES_WIREDBAS_COMMON_NODE_H_ 00010 00011 #include "InstantiableNode.h" 00012 #include "quantities/RealDelay.h" 00013 00014 namespace cosi { 00015 00016 namespace library { 00017 00018 namespace wiredbas { 00019 00020 class Node : public cosi::library::wiredbas::InstantiableNode { 00021 public: 00022 Node(); 00023 virtual ~Node(); 00024 virtual RealDelay GetDelay(Vertex NodeId, 00025 cosi::commstruct::wiredbas::Implementation* pI, Vertex Src, 00026 Vertex Dest) = 0 ; 00027 virtual double GetDelayValue(Vertex NodeId, 00028 cosi::commstruct::wiredbas::Implementation* pI, Vertex Src, 00029 Vertex Dest) = 0; 00030 virtual double GetCost() =0 ; 00031 00032 }; 00033 00034 } 00035 00036 } 00037 00038 } 00039 00040 #endif /*NODE_H_*/ Generated on Sun Sep 7 18:37:42 2008 for COSI by 1.5.4 |