summaryrefslogtreecommitdiff
path: root/client/main.cpp
diff options
context:
space:
mode:
authorGluzskiy Alexandr <sss@sss.chaoslab.ru>2012-09-04 12:01:53 +0300
committerGluzskiy Alexandr <sss@sss.chaoslab.ru>2012-09-04 12:01:53 +0300
commit614b78470c5ed3c701abdd32bc65412f363a6fc2 (patch)
tree288d7967378bb980544c2ca74fd6bf04e4efd590 /client/main.cpp
parent3ab3d03b8b603f210d878d352b56442eec14f6af (diff)
added restarter project (code wcreated to restart critical services on server without root access)
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..9ae175b
--- /dev/null
+++ b/client/main.cpp
@@ -0,0 +1,11 @@
+#include <QtGui/QApplication>
+#include "mainwindow.h"
+
+int main(int argc, char *argv[])
+{
+ QApplication a(argc, argv);
+ MainWindow w;
+ w.show();
+
+ return a.exec();
+}