diff options
| author | Manjeet Dahiya <manjeetdahiya@gmail.com> | 2010-10-17 13:46:55 +0000 |
|---|---|---|
| committer | Manjeet Dahiya <manjeetdahiya@gmail.com> | 2010-10-17 13:46:55 +0000 |
| commit | 5dac70f3f45821cdb7035efb6255aa83d3545691 (patch) | |
| tree | a63cb9b940eb1785479ebae7e42620c130a5d8ca /examples/GuiClient/aboutDialog.h | |
| parent | de559cb56ea663af227dd7a09207b0a0609563cc (diff) | |
| download | qxmpp-5dac70f3f45821cdb7035efb6255aa83d3545691.tar.gz | |
add aboutDialog
Diffstat (limited to 'examples/GuiClient/aboutDialog.h')
| -rw-r--r-- | examples/GuiClient/aboutDialog.h | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/examples/GuiClient/aboutDialog.h b/examples/GuiClient/aboutDialog.h new file mode 100644 index 00000000..f0adcc66 --- /dev/null +++ b/examples/GuiClient/aboutDialog.h @@ -0,0 +1,22 @@ +#ifndef ABOUTDIALOG_H
+#define ABOUTDIALOG_H
+
+#include <QDialog>
+
+namespace Ui {
+ class aboutDialog;
+}
+
+class aboutDialog : public QDialog
+{
+ Q_OBJECT
+
+public:
+ explicit aboutDialog(QWidget *parent = 0);
+ ~aboutDialog();
+
+private:
+ Ui::aboutDialog *ui;
+};
+
+#endif // ABOUTDIALOG_H
|
