source:
ntrip/trunk/BNC/src/pppMain.h@
6398
Last change on this file since 6398 was 6046, checked in by , 10 years ago | |
---|---|
File size: 460 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; | |
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.