diff options
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
|
