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