source: ntrip/trunk/BNC/src/PPP/pppMain.h@ 5716

Last change on this file since 5716 was 5716, checked in by mervart, 10 years ago
File size: 595 bytes
Line 
1#ifndef PPPMAIN_H
2#define PPPMAIN_H
3
4#include <QtCore>
5#include "options.h"
6
7namespace BNC {
8
9class t_pppMain {
10 public:
11 t_pppMain();
12 ~t_pppMain();
13 void start();
14 void stop();
15
16 private:
17 void readOptions();
18
19 QList<QSharedPointer<t_options> > _options;
20 QString _logFile;
21 QString _nmeaFile;
22 int _nmeaPort;
23};
24
25}; // namespace BNC
26
27#endif
Note: See TracBrowser for help on using the repository browser.