source: ntrip/trunk/BNC/src/PPP/pppThread.h@ 5860

Last change on this file since 5860 was 5860, checked in by mervart, 10 years ago
File size: 509 bytes
Line 
1#ifndef PPPTHREAD_H
2#define PPPTHREAD_H
3
4#include <deque>
5#include <vector>
6#include <QtCore>
7
8#include "GPSDecoder.h"
9#include "pppOptions.h"
10#include "pppClient.h"
11#include "pppRunRealTime.h"
12
13namespace BNC_PPP {
14
15class t_pppThread : public QThread {
16 Q_OBJECT
17 public:
18 t_pppThread(const t_pppOptions* opt);
19 ~t_pppThread();
20 virtual void run();
21
22 signals:
23 void newMessage(QByteArray msg, bool showOnScreen);
24
25 private:
26 const t_pppOptions* _opt;
27 t_pppRunRealTime* _pppRunRealTime;
28};
29
30}
31
32#endif
Note: See TracBrowser for help on using the repository browser.