|
libraries/wiredbas/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/Node.h" 00012 #include "networks/wiredbas/WiredBasPlatformInstance.h" 00013 #include "networks/wiredbas/WiredBasImplementation.h" 00014 00015 namespace cosi 00016 { 00017 00018 namespace library 00019 { 00020 00021 namespace wiredbas 00022 { 00023 00024 class InstantiableNode : public cosi::library::Node 00025 { 00026 public: 00027 InstantiableNode(); 00028 virtual ~InstantiableNode(); 00029 virtual cosi::commstruct::wiredbas::PlatformInstance* GetPlatformInstance(int V , Position pP ) =0 ; 00030 virtual cosi::commstruct::wiredbas::Implementation* GetImplementationInstance(int V , Position pP , ThreadSet pThreads, TransferTable pT ) =0; 00031 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 |