source: ntrip/trunk/BNC/bncapp.h@ 151

Last change on this file since 151 was 151, checked in by mervart, 19 years ago

* empty log message *

File size: 405 bytes
RevLine 
[82]1
2#ifndef BNCAPP_H
3#define BNCAPP_H
4
5#include <QApplication>
[109]6#include <QFile>
7#include <QTextStream>
[82]8
9class bncApp : public QApplication {
10 Q_OBJECT
11 public:
12 bncApp(int argc, char* argv[], bool GUIenabled);
13 virtual ~bncApp();
14 public slots:
15 void slotMessage(const QByteArray msg);
[109]16 private:
17 QFile* _logFile;
18 QTextStream* _logStream;
[151]19 int _logFileFlag;
[82]20};
21#endif
Note: See TracBrowser for help on using the repository browser.