source: ntrip/trunk/BNC/src/pppMain.h@ 6749

Last change on this file since 6749 was 6749, checked in by stuerze, 9 years ago

cosmetical changes

File size: 512 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;
[6608]24 QString _snxtroFile;
[6749]25 int _snxtroSampling;
[5905]26 int _nmeaPort;
27 bool _running;
[5971]28 bool _realTime;
[5714]29};
30
[5814]31}; // namespace BNC_PPP
[5714]32
33#endif
Note: See TracBrowser for help on using the repository browser.