source: ntrip/branches/BNC_2.12/src/pppMain.h@ 7879

Last change on this file since 7879 was 7856, checked in by stuerze, 8 years ago

minor changes to allow a clean end of program

File size: 416 bytes
Line 
1#ifndef PPPMAIN_H
2#define PPPMAIN_H
3
4#include <QtCore>
5#include "pppOptions.h"
6#include "pppThread.h"
7#include "bnccore.h"
8
9namespace BNC_PPP {
10
11class t_pppMain {
12 public:
13 t_pppMain();
14 ~t_pppMain();
15 void start();
16 void stop();
17
18 private:
19 void readOptions();
20
21 QList<t_pppOptions*> _options;
22 QList<t_pppThread*> _pppThreads;
23 bool _running;
24 bool _realTime;
25};
26
27}; // namespace BNC_PPP
28
29#endif
Note: See TracBrowser for help on using the repository browser.