summaryrefslogtreecommitdiff
path: root/client/main.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'client/main.cpp')
-rw-r--r--client/main.cpp11
1 files changed, 11 insertions, 0 deletions
diff --git a/client/main.cpp b/client/main.cpp
new file mode 100644
index 0000000..ab4d526
--- /dev/null
+++ b/client/main.cpp
@@ -0,0 +1,11 @@
+
+#include <QApplication>
+#include "dialog.h"
+
+int main(int argc, char *argv[])
+{
+ QApplication app(argc, argv);
+ ProxyDialog *dialog = new ProxyDialog;
+ dialog->show();
+ return app.exec();
+} \ No newline at end of file