Add version information to zint.h and increment release version

Relates to #51
This commit is contained in:
Robin Stuart 2016-12-10 09:04:06 +00:00
parent 6115a3f8b6
commit e7858dfe98
11 changed files with 109 additions and 6 deletions

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();
}