QTfrontend/netudpserver.h
author displacer
Mon, 19 Feb 2007 15:31:40 +0000
changeset 455 925891c52e40
parent 413 523f1769f2bc
child 486 7ea71cd3acd5
permissions -rw-r--r--
hedgehogs num bugfix for netgame

#ifndef _NET_UDPSERVER_INCLUDED
#define _NET_UDPSERVER_INCLUDED

#include <QObject>

class QUdpSocket;

class HWNetUdpServer : public QObject
{
  Q_OBJECT

 public:
  HWNetUdpServer(QObject *parent = 0);

 private slots:
  void onClientRead();

 private:
  QUdpSocket* pUdpSocket;
};

#endif // _NET_UDPSERVER_INCLUDED