From 614b78470c5ed3c701abdd32bc65412f363a6fc2 Mon Sep 17 00:00:00 2001 From: Gluzskiy Alexandr Date: Tue, 4 Sep 2012 12:01:53 +0300 Subject: added restarter project (code wcreated to restart critical services on server without root access) --- client/main.cpp | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 client/main.cpp (limited to 'client/main.cpp') 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 +#include "mainwindow.h" + +int main(int argc, char *argv[]) +{ + QApplication a(argc, argv); + MainWindow w; + w.show(); + + return a.exec(); +} -- cgit v1.2.3