|
libraries/onchipcommunication/common/_Node.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 _NODE_H_ 00009 #define _NODE_H_ 00010 00011 #include "quantities/onchipcommunication/Ports.h" 00012 00013 namespace cosi { 00014 00015 namespace library { 00016 00017 namespace onchipcommunication { 00018 00019 class _Node { 00020 public: 00021 _Node(); 00022 virtual ~_Node(); 00023 cosi::quantity::onchipcommunication::Ports GetPorts(); 00024 protected: 00025 cosi::quantity::onchipcommunication::Ports mPorts ; 00026 }; 00027 00028 } 00029 00030 } 00031 00032 } 00033 00034 #endif /*_NODE_H_*/ Generated on Sun Sep 7 18:37:42 2008 for COSI by 1.5.4 |