source: ntrip/trunk/BNS/bnshlpdlg.h@ 2855

Last change on this file since 2855 was 751, checked in by mervart, 16 years ago

* empty log message *

File size: 450 bytes
Line 
1#ifndef BNSHLPDLG_H
2#define BNSHLPDLG_H
3
4#include <QtCore>
5#include <QtGui>
6
7class bnsHtml;
8
9class bnsHlpDlg : public QDialog {
10 Q_OBJECT
11
12 public:
13 bnsHlpDlg(QWidget* parent, const QUrl& url);
14 ~bnsHlpDlg();
15
16 signals:
17
18 public slots:
19 void backwardAvailable(bool);
20 void forwardAvailable(bool);
21
22 private:
23 bnsHtml* _tb;
24 QPushButton* _backButton;
25 QPushButton* _forwButton;
26 QPushButton* _closeButton;
27};
28
29#endif
Note: See TracBrowser for help on using the repository browser.