|
rules/wiredbas/common/BusRule.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 BUSRULE_H_ 00009 #define BUSRULE_H_ 00010 00011 #include "networks/wiredbas/WiredBasImplementation.h" 00012 00013 namespace cosi 00014 { 00015 00016 namespace rules 00017 { 00018 00019 namespace wiredbas 00020 { 00021 00022 class BusRule 00023 { 00024 00025 public: 00026 BusRule(); 00027 virtual ~BusRule(); 00028 virtual bool Satisfies(cosi::commstruct::wiredbas::Implementation pC) = 0 ; 00029 virtual bool Satisfies(cosi::commstruct::wiredbas::Implementation* pC) = 0 ; 00030 00031 }; 00032 00033 } 00034 00035 } 00036 00037 } 00038 00039 #endif /*BUSRULE_H_*/ Generated on Sun Sep 7 18:37:43 2008 for COSI by 1.5.4 |