mirror of
https://github.com/eliboa/TegraRcmGUI.git
synced 2024-11-28 13:12:05 +00:00
11 lines
174 B
C++
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();
|
|
}
|