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

Last change on this file since 5971 was 5971, checked in by mervart, 10 years ago
File size: 460 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
[5900]10class t_pppMain {
[5714]11 public:
[5905]12 t_pppMain();
[5716]13 ~t_pppMain();
[5946]14 void start();
[5905]15 void stop();
[5714]16
17 private:
18 void readOptions();
19
[5813]20 QList<t_pppOptions*> _options;
21 QList<t_pppThread*> _pppThreads;
[5905]22 QString _logFile;
23 QString _nmeaFile;
24 int _nmeaPort;
25 bool _running;
[5971]26 bool _realTime;
[5714]27};
28
[5814]29}; // namespace BNC_PPP
[5714]30
31#endif
Note: See TracBrowser for help on using the repository browser.