Added example project and updated documentation

This commit is contained in:
Uwe Kindler
2018-12-20 09:15:02 +01:00
parent c0d6f959ec
commit 8f54dd2a82
9 changed files with 239 additions and 28 deletions

11
example/main.cpp Normal file
View File

@@ -0,0 +1,11 @@
#include "MainWindow.h"
#include <QApplication>
int main(int argc, char *argv[])
{
QApplication a(argc, argv);
MainWindow w;
w.show();
return a.exec();
}