|
rules/wiredbas/node/NodePosition.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 NODEPOSITION_H_ 00009 #define NODEPOSITION_H_ 00010 00011 #include <string> 00012 #include <list> 00013 #include "quantities/Position.h" 00014 00015 namespace cosi { 00016 00017 namespace rules { 00018 00019 namespace wiredbas { 00020 00021 class NodePosition { 00022 std::list< Position > mPositions; 00023 public: 00024 NodePosition(std::list< Position > pPositions); 00025 virtual ~NodePosition(); 00026 std::list< Position > GetPositions(); 00027 void AddPosition(Position pP); 00028 }; 00029 00030 } 00031 00032 } 00033 00034 } 00035 00036 #endif /*NODEPOSITION_H_*/ Generated on Sun Sep 7 18:37:43 2008 for COSI by 1.5.4 |