source: pacpussensors/trunk/Gps/gpsServerSocketInterface.cpp@ 149

Last change on this file since 149 was 59, checked in by DHERBOMEZ Gérald, 10 years ago

Integration of new modules:

  • GPS NMEA0183 decoder
  • Span CPT Decoder

Update of:

File size: 478 bytes
Line 
1#include "network/gpsServerSocketInterface.h"
2
3
4GpsServerSocketInterface::GpsServerSocketInterface(int socket)
5{
6 connect( this, SIGNAL(readyRead()), SLOT(readClient()) );
7 setSocket(socket);
8}
9
10
11void GpsServerSocketInterface::readClient()
12{
13 QTextStream stream(this);
14 /*!
15 * we have received a message from a client
16 * and we are looking for what frame is requested
17 */
18
19
20 /*!
21 * then we send the corresponding data to the client
22 */
23
24}
Note: See TracBrowser for help on using the repository browser.