##// END OF EJS Templates
Fixed a bug with axis titles in QML F1 Legends demo
Fixed a bug with axis titles in QML F1 Legends demo

File last commit:

r2155:efb312b94196
r2301:26696b77b7fe
Show More
main.cpp
11 lines | 168 B | text/x-c | CppLexer
Marek Rosa
Added audio input demo
r2155 #include <QApplication>
#include "widget.h"
int main(int argc, char *argv[])
{
QApplication a(argc, argv);
Widget w;
w.show();
return a.exec();
}