|
libraries/wiredbas/common/Link.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_LINK_H_ 00009 #define LIBRARIES_WIREDBAS_COMMON_LINK_H_ 00010 00011 #include "Node.h" 00012 #include "InstantiableLink.h" 00013 #include "../../../quantities/WiringPath.h" 00014 00015 namespace cosi { 00016 00017 namespace library { 00018 00019 namespace wiredbas { 00020 00021 class Link : public cosi::library::wiredbas::InstantiableLink { 00022 public: 00023 Link(); 00024 virtual ~Link(); 00025 virtual double GetCost(WiringPath P) = 0 ; 00026 }; 00027 00028 } 00029 00030 } 00031 00032 } 00033 00034 #endif /*LINK_H_*/ Generated on Sun Sep 7 18:37:42 2008 for COSI by 1.5.4 |