1
0
Fork 0
mirror of https://github.com/eliboa/TegraRcmGUI.git synced 2024-11-28 13:12:05 +00:00
TegraRcmGUI/main.cpp
2020-06-24 20:30:39 +02:00

11 lines
174 B
C++

#include "tegrarcmgui.h"
#include <QApplication>
int main(int argc, char *argv[])
{
QApplication a(argc, argv);
TegraRcmGUI w;
w.show();
return a.exec();
}