stec-platform
qnxdaemon.h
1 #ifndef QNXDAEMON_H
2 #define QNXDAEMON_H
3 /*
4 *
5 * $LastChangedDate: 2014-08-14 12:47:21 -0400 (Thu, 14 Aug 2014) $
6 * $LastChangedBy: ed $
7 * $Revision: 61 $
8 * $Author: ed $
9 * $URL: svn+ssh://svn.vremsoft.com/var/share/svn/tags/platfom3.4.3/platformlib/qnxtalk/qnxdaemon.h $
10 * $Id: qnxdaemon.h 61 2014-08-14 16:47:21Z ed $
11 * edc@vremsoft.com
12 *
13 * 19
14 *
15 * *** 2014<c> ***
16 *
17 *
18 */
19 #include <QObject>
20 #include <QTcpServer>
21 #include <QTcpSocket>
22 #include "qnxsprur.h"
23 
24 namespace QXX {
25 class PLATFORMSHARED_EXPORT QnxDaemon : public QTcpServer
26 {
27  Q_OBJECT
28 
29 private :
30  QnxSprur &plugin;
31 
32 public:
33  explicit QnxDaemon(QnxSprur &Plugin, QObject *parent = 0);
34  virtual ~QnxDaemon();
35 
36 
37 #if QT_VERSION >= 0x050000
38  virtual void incomingConnection ( qintptr socketDescriptor );
39 #else
40  virtual void incomingConnection ( int socketDescriptor );
41 #endif
42 
43 
44 signals:
45 
46 public slots:
47 
48 };
49 }
50 
51 #endif // QNXDAEMON_H
Definition: qnxdaemon.h:26
Definition: qnxsprur.h:39