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
path: root/src
diff options
context:
space:
mode:
authorAntenore Gatta <antenore@simbiosi.org>2019-08-16 02:34:08 +0300
committerAntenore Gatta <antenore@simbiosi.org>2019-08-16 02:34:08 +0300
commitefdfab3463d38e56c768bcd6d7764a9d6ff16bc2 (patch)
tree2497822da74cf46b0600ea875399590a5038f1af /src
parent8884c9cab9f2974a87a63f2acf9bcc7cd86c107c (diff)
Added icons and initial actions
Diffstat (limited to 'src')
-rw-r--r--src/main.cpp11
1 files changed, 11 insertions, 0 deletions
diff --git a/src/main.cpp b/src/main.cpp
new file mode 100644
index 0000000..eaca329
--- /dev/null
+++ b/src/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();
+}