00001
00002
00003
00004
00005
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