source:
ntrip/trunk/BNC/src/pppMain.h@
6623
Last change on this file since 6623 was 6608, checked in by , 10 years ago | |
---|---|
File size: 484 bytes |
Rev | Line | |
---|---|---|
[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] | 8 | namespace BNC_PPP { |
[5714] | 9 | |
[5900] | 10 | class 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; |
[5905] | 25 | int _nmeaPort; |
26 | bool _running; | |
[5971] | 27 | bool _realTime; |
[5714] | 28 | }; |
29 | ||
[5814] | 30 | }; // namespace BNC_PPP |
[5714] | 31 | |
32 | #endif |
Note:
See TracBrowser
for help on using the repository browser.