aboutsummaryrefslogtreecommitdiff
path: root/examples/GuiClient/profileDialog.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'examples/GuiClient/profileDialog.cpp')
-rw-r--r--examples/GuiClient/profileDialog.cpp14
1 files changed, 14 insertions, 0 deletions
diff --git a/examples/GuiClient/profileDialog.cpp b/examples/GuiClient/profileDialog.cpp
new file mode 100644
index 00000000..58d72449
--- /dev/null
+++ b/examples/GuiClient/profileDialog.cpp
@@ -0,0 +1,14 @@
+#include "profileDialog.h"
+#include "ui_profileDialog.h"
+
+profileDialog::profileDialog(QWidget *parent) :
+ QDialog(parent),
+ ui(new Ui::profileDialog)
+{
+ ui->setupUi(this);
+}
+
+profileDialog::~profileDialog()
+{
+ delete ui;
+}