From f59f1f1402ef678b0789d14937d7806fd952601a Mon Sep 17 00:00:00 2001 From: Manjeet Dahiya Date: Thu, 9 Sep 2010 08:23:53 +0000 Subject: add profile dialog --- examples/GuiClient/profileDialog.cpp | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 examples/GuiClient/profileDialog.cpp (limited to 'examples/GuiClient/profileDialog.cpp') 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; +} -- cgit v1.2.3