mirror of
git://projects.qi-hardware.com/nn-usb-fpga.git
synced 2025-01-10 00:30:14 +02:00
11 lines
174 B
C++
Executable File
11 lines
174 B
C++
Executable File
#include <QtGui/QApplication>
|
|
#include "mainwindow.h"
|
|
|
|
int main(int argc, char *argv[])
|
|
{
|
|
QApplication a(argc, argv);
|
|
MainWindow w;
|
|
w.show();
|
|
return a.exec();
|
|
}
|