Last change
on this file since 7357 was 6964, checked in by stuerze, 9 years ago |
NMEA port was moved into a station dependent table; some additions regarding BDS
|
File size:
490 bytes
|
Line | |
---|
1 | #ifndef PPPMAIN_H
|
---|
2 | #define PPPMAIN_H
|
---|
3 |
|
---|
4 | #include <QtCore>
|
---|
5 | #include "pppOptions.h"
|
---|
6 | #include "pppThread.h"
|
---|
7 |
|
---|
8 | namespace BNC_PPP {
|
---|
9 |
|
---|
10 | class t_pppMain {
|
---|
11 | public:
|
---|
12 | t_pppMain();
|
---|
13 | ~t_pppMain();
|
---|
14 | void start();
|
---|
15 | void stop();
|
---|
16 |
|
---|
17 | private:
|
---|
18 | void readOptions();
|
---|
19 |
|
---|
20 | QList<t_pppOptions*> _options;
|
---|
21 | QList<t_pppThread*> _pppThreads;
|
---|
22 | QString _logFile;
|
---|
23 | QString _nmeaFile;
|
---|
24 | QString _snxtroFile;
|
---|
25 | int _snxtroSampling;
|
---|
26 | bool _running;
|
---|
27 | bool _realTime;
|
---|
28 | };
|
---|
29 |
|
---|
30 | }; // namespace BNC_PPP
|
---|
31 |
|
---|
32 | #endif
|
---|
Note:
See
TracBrowser
for help on using the repository browser.