|
rules/onchipcommunication/CompositionRule.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 COMPOSITIONRULE_H_ 00009 #define COMPOSITIONRULE_H_ 00010 00011 #include "networks/onchipcommunication/PlatformInstance.h" 00012 #include "networks/onchipcommunication/Implementation.h" 00013 00014 namespace cosi{ 00015 namespace rules{ 00016 namespace onchipcommunication{ 00017 00018 using namespace cosi::commstruct::onchipcommunication ; 00019 00020 class CompositionRule { 00021 public: 00022 CompositionRule(); 00023 virtual ~CompositionRule(); 00024 virtual PlatformInstance Compose(PlatformInstance pOp1 , PlatformInstance pOp2) ; 00025 virtual Implementation Compose(Implementation pOp1 , Implementation pOp2) ; 00026 }; 00027 00028 00029 } 00030 } 00031 } 00032 00033 #endif /*COMPOSITIONRULE_H_*/ Generated on Sun Sep 7 18:37:43 2008 for COSI by 1.5.4 |