~george-edison55/jetserver/trunk

« back to all changes in this revision

Viewing changes to CJetServer.h

  • Committer: Nathan Osman
  • Date: 2010-12-28 19:49:46 UTC
  • Revision ID: admin@quickmediasolutions.com-20101228194946-lq1xqr8is1jzz88x
Initial code commit.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#ifndef CJETSERVER_H
 
2
#define CJETSERVER_H
 
3
 
 
4
// JetServer includes
 
5
#include <QString>
 
6
#include <QTcpServer>
 
7
 
 
8
class CJetServer : QTcpServer
 
9
{
 
10
    Q_OBJECT
 
11
 
 
12
public:
 
13
 
 
14
    CJetServer(quint16);
 
15
    ~CJetServer();
 
16
 
 
17
    void SendMessage(QString);
 
18
 
 
19
public slots:
 
20
 
 
21
    void OnConnection();
 
22
};
 
23
 
 
24
#endif // CJETSERVER_H