Last change
on this file 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 |
|
---|
4 | GpsServerSocketInterface::GpsServerSocketInterface(int socket)
|
---|
5 | {
|
---|
6 | connect( this, SIGNAL(readyRead()), SLOT(readClient()) );
|
---|
7 | setSocket(socket);
|
---|
8 | }
|
---|
9 |
|
---|
10 |
|
---|
11 | void 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.