|
Superviseur - Collecteur 1.0
Ce logiciel correspond au collecteur de la suite des trois logiciels composant le superviseur
|
00001 #ifndef AFFICHEURSOCKET_H 00002 #define AFFICHEURSOCKET_H 00003 00004 #include <QTcpServer> 00005 #include "afficheursocketthread.h" 00006 00008 00014 class AfficheurSocket : public QTcpServer 00015 { 00016 Q_OBJECT 00017 00018 public: 00019 explicit AfficheurSocket(quint16 port = 56000, QObject *parent = 0); 00020 00021 protected: 00022 void incomingConnection(int socketDescriptor); 00023 00024 signals: 00026 00031 void nouvellesDonnees(QString donnees); 00032 00033 public slots: 00034 void receptionDonnees(QString donnees); 00035 00036 private: 00037 00038 00039 }; 00040 00041 #endif // AFFICHEURSOCKET_H
1.7.4