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

Last change on this file since 109 was 109, checked in by mervart, 18 years ago

* empty log message *

File size: 374 bytes
Line 
1
2#ifndef BNCAPP_H
3#define BNCAPP_H
4
5#include <QApplication>
6#include <QFile>
7#include <QTextStream>
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);
16 private:
17 QFile* _logFile;
18 QTextStream* _logStream;
19};
20#endif
Note: See TracBrowser for help on using the repository browser.