1
0
mirror of git://projects.qi-hardware.com/nn-usb-fpga.git synced 2025-01-11 00:00:15 +02:00
nn-usb-fpga/Examples/ADC/Scope-QT-src/main.cpp

11 lines
174 B
C++
Raw Normal View History

2010-04-05 22:06:50 +03:00
#include <QtGui/QApplication>
#include "mainwindow.h"
int main(int argc, char *argv[])
{
QApplication a(argc, argv);
MainWindow w;
w.show();
return a.exec();
}