/* =============================================================================== Listener =============================================================================== */ #ifndef LISTENER_H #define LISTENER_H #include class Listener { private: short port; void Run(); public: Listener(short port); ~Listener(); // void Begin(); // void End(); }; #endif