Initial commit

This commit is contained in:
jaseg 2020-08-04 01:04:52 +02:00
commit 872bb95acf
20 changed files with 1369 additions and 0 deletions

11
main.cpp Normal file
View file

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