24 lines
384 B
C++
24 lines
384 B
C++
/*
|
|
===============================================================================
|
|
|
|
Listener
|
|
|
|
===============================================================================
|
|
*/
|
|
#ifndef LISTENER_H
|
|
#define LISTENER_H
|
|
|
|
#include <iostream>
|
|
|
|
class Listener {
|
|
private:
|
|
short port;
|
|
void Run();
|
|
public:
|
|
Listener(short port);
|
|
~Listener();
|
|
// void Begin();
|
|
// void End();
|
|
};
|
|
#endif
|