cutter/src/main.cpp
Hugo Teso ca821e1064 First code commit
First commit with the app code
2017-03-29 12:18:37 +02:00

14 lines
244 B
C++

#include "mainwindow.h"
#include "newfiledialog.h"
#include <QApplication>
int main(int argc, char *argv[])
{
QApplication a(argc, argv);
a.setApplicationVersion(APP_VERSION);
NewFileDialog n;
n.show();
return a.exec();
}