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

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