#include <TcpSocket.h>
#include <SocketHandler.h>

#ifndef POKUS1_DISPLAYSOCKET_H
#define POKUS1_DISPLAYSOCKET_H

class DisplaySocket : public TcpSocket {
public:
    DisplaySocket(SocketHandler& h) : TcpSocket(h) { }
    
    void OnRead();
};

#endif

