##// END OF EJS Templates
Fixed QML oscilloscope layout
Fixed QML oscilloscope layout

File last commit:

r2229:bee551388900
r2312:2932f3712717
Show More
main.cpp
11 lines | 168 B | text/x-c | CppLexer
Marek Rosa
Added simple demoLauncher application
r2229 #include <QApplication>
#include "widget.h"
int main(int argc, char *argv[])
{
QApplication a(argc, argv);
Widget w;
w.show();
return a.exec();
}