nn-usb-fpga/Examples/ADC/Test-QT-src/main.cpp

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();
}