##// END OF EJS Templates
Arm test fix
Arm test fix

File last commit:

r2358:9d5a354692be
r2391:f36ae3238176
Show More
main.cpp
11 lines | 164 B | text/x-c | CppLexer
#include <QApplication>
#include "view.h"
int main(int argc, char *argv[])
{
QApplication a(argc, argv);
View w;
w.show();
return a.exec();
}