mirror of
https://github.com/rizinorg/cutter.git
synced 2024-12-21 12:26:11 +00:00
13 lines
173 B
C++
13 lines
173 B
C++
|
|
#include "CutterApplication.h"
|
|
#include "MainWindow.h"
|
|
|
|
int main(int argc, char *argv[])
|
|
{
|
|
CutterApplication a(argc, argv);
|
|
|
|
int ret = a.exec();
|
|
|
|
return ret;
|
|
}
|