source:
ntrip/trunk/BNS/bnsapp.h@
3302
Last change on this file since 3302 was 1679, checked in by , 16 years ago | |
---|---|
File size: 375 bytes |
Rev | Line | |
---|---|---|
[1679] | 1 | |
2 | #ifndef BNSAPP_H | |
3 | #define BNSAPP_H | |
4 | ||
5 | #include <QApplication> | |
6 | #include <QDir> | |
7 | ||
8 | class bnsApp : public QApplication { | |
9 | Q_OBJECT | |
10 | public: | |
11 | bnsApp(int& argc, char* argv[], bool GUIenabled); | |
12 | virtual ~bnsApp(); | |
13 | void setConfFileName(const QString& confFileName); | |
14 | QString confFileName() const {return _confFileName;} | |
15 | ||
16 | private: | |
17 | QString _confFileName; | |
18 | }; | |
19 | #endif |
Note:
See TracBrowser
for help on using the repository browser.