source: ntrip/trunk/BNC/src/PPP/pppMain.h@ 5876

Last change on this file since 5876 was 5870, checked in by mervart, 10 years ago
File size: 691 bytes
Line 
1#ifndef PPPMAIN_H
2#define PPPMAIN_H
3
4#include <QtCore>
5#include "pppOptions.h"
6#include "pppThread.h"
7
8namespace BNC_PPP {
9
10class t_pppMain : public QObject {
11Q_OBJECT
12 public:
13 t_pppMain();
14 ~t_pppMain();
15 void start();
16 public slots:
17 void slotStop();
18
19 private:
20 void readOptions();
21
22 QList<t_pppOptions*> _options;
23 QList<t_pppThread*> _pppThreads;
24 QString _logFile;
25 QString _nmeaFile;
26 int _nmeaPort;
27 bool _running;
28};
29
30}; // namespace BNC_PPP
31
32#endif
Note: See TracBrowser for help on using the repository browser.