diff options
author | Alex Borisov <b0ris@b0ris-universe.localdomain> | 2011-10-19 03:13:11 +0300 |
---|---|---|
committer | Alex Borisov <b0ris@b0ris-universe.localdomain> | 2011-10-19 03:13:11 +0300 |
commit | 4ac3da0fe4400b9109636143e8da53dbef6c3984 (patch) | |
tree | 71ca352b7f181c429ecc9929caaad8f9c5125d56 /client/main.cpp | |
parent | b7c741ecba97c00d8f5ade3ea388fe42a4511b04 (diff) |
Main window mockup
Diffstat (limited to 'client/main.cpp')
-rw-r--r-- | client/main.cpp | 11 |
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 |