Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/Remmina/QRema.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAntenore Gatta <antenore@simbiosi.org>2019-08-15 18:28:04 +0300
committerAntenore Gatta <antenore@simbiosi.org>2019-08-15 18:28:04 +0300
commit64bd753b474c998ba29cbd6e7cbecb748d219975 (patch)
treeaa094e482377e28f00b5e887aad37119d67bc525 /main.cpp
Initial import
Diffstat (limited to 'main.cpp')
-rw-r--r--main.cpp11
1 files changed, 11 insertions, 0 deletions
diff --git a/main.cpp b/main.cpp
new file mode 100644
index 0000000..eaca329
--- /dev/null
+++ b/main.cpp
@@ -0,0 +1,11 @@
+#include "qremamain.h"
+#include <QApplication>
+
+int main(int argc, char *argv[])
+{
+ QApplication a(argc, argv);
+ QRemaMain w;
+ w.show();
+
+ return a.exec();
+}