RISC-V/V203/usb/scope/software/main.cpp

10 lines
177 B
C++
Raw Normal View History

2024-10-21 10:26:41 +02:00
#include "main.h"
int main (int argc, char *argv[]) {
// QApplication::setStyle("plastique");
QApplication a (argc, argv);
MainWindow w;
w.show();
return a.exec();
}