mirror of
https://github.com/rizinorg/cutter.git
synced 2024-12-19 11:26:11 +00:00
ca821e1064
First commit with the app code
14 lines
244 B
C++
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();
|
|
}
|