00001 #ifndef __CONNECTIONLISTENER_H 00002 #define __CONNECTIONLISTENER_H 00003 00004 class Connection; 00005 00010 class ConnectionListener { 00011 public: 00015 virtual void connectionEvent(Connection* node, int eventType) = 0; 00016 }; 00017 00018 #endif