~george-edison55/jetserver/trunk

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#ifndef CJETSERVER_H
#define CJETSERVER_H

// JetServer includes
#include <QString>
#include <QTcpServer>

class CJetServer : QTcpServer
{
    Q_OBJECT

public:

    CJetServer(quint16);
    ~CJetServer();

    void SendMessage(QString);

public slots:

    void OnConnection();
};

#endif // CJETSERVER_H