1
0
mirror of git://projects.qi-hardware.com/nn-usb-fpga.git synced 2025-01-23 00:51:05 +02:00

11 lines
174 B
C++
Raw Normal View History

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