##// END OF EJS Templates
spooling frequency of the star dundee bridge changed from 100 ms to 1 ms
spooling frequency of the star dundee bridge changed from 100 ms to 1 ms

File last commit:

r35:0ca1c62d8087 default
r53:cd731a3327c0 default
Show More
main.cpp
12 lines | 201 B | text/x-c | CppLexer
#include <QtGui/QApplication>
#include "mainwindow.h"
#include <QVBoxLayout>
int main(int argc, char *argv[])
{
QApplication a(argc, argv);
MainWindow w;
w.show();
return a.exec();
}