00001 #ifndef __CONNECTIONTABLEENTRY_H 00002 #define __CONNECTIONTABLEENTRY_H 00003 00004 #include "ConnectionInterface.h" 00005 #include "Node.h" 00006 00007 class ConnectionTableEntry : public BasicObject { 00008 public: 00009 ConnectionTableEntry(); 00010 ConnectionTableEntry(ConnectionInterface*, Node*); 00011 virtual ~ConnectionTableEntry(); 00012 00013 ConnectionInterface* getConnection(); 00014 //void setConnection(ConnectionInterface*); 00015 00016 Node* getNode(); 00017 //void setNode(Node*); 00018 00019 private: 00020 ConnectionInterface* m_connection; 00021 Node* m_node; 00022 }; 00023 00024 #endif 00025