Main Page   Namespace List   Class Hierarchy   Alphabetical List   Compound List   File List   Compound Members   File Members   Related Pages  

ConnectionTableEntry.h

Go to the documentation of this file.
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 

Generated at Thu Jul 11 13:31:50 2002 for Peekabooty by doxygen1.2.9 written by Dimitri van Heesch, © 1997-2001