##// END OF EJS Templates
Fixed a compilation issue in axis example
Fixed a compilation issue in axis example

File last commit:

r486:7ab45bf9f776
r501:6973892b62db
Show More
main.cpp
11 lines | 178 B | text/x-c | CppLexer
#include <QtGui/QApplication>
#include "mainwindow.h"
int main(int argc, char *argv[])
{
QApplication a(argc, argv);
MainWindow w;
w.show();
return a.exec();
}