|
libraries/onchipcommunication/common/InstantiableNode.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 INSTANTIABLENODE_H_ 00009 #define INSTANTIABLENODE_H_ 00010 00011 #include "libraries/onchipcommunication/common/_Node.h" 00012 #include "networks/onchipcommunication/PlatformInstance.h" 00013 #include "networks/onchipcommunication/Implementation.h" 00014 #include "quantities/onchipcommunication/NodeParameter.h" 00015 00016 namespace cosi 00017 { 00018 00019 namespace library 00020 { 00021 00022 namespace onchipcommunication 00023 { 00024 00025 class InstantiableNode : public _Node 00026 { 00027 public: 00028 InstantiableNode(){}; 00029 virtual ~InstantiableNode(){}; 00030 virtual cosi::commstruct::onchipcommunication::PlatformInstance* GetPlatformInstance(int V , Position pP ) =0 ; 00031 virtual cosi::commstruct::onchipcommunication::Implementation* GetImplementationInstance(int V , Position pP , TransferTable pT ) =0; 00032 }; 00033 00034 } 00035 00036 } 00037 00038 } 00039 00040 #endif /*INSTANTIABLENODE_H_*/ Generated on Sun Sep 7 18:37:42 2008 for COSI by 1.5.4 |