##// END OF EJS Templates
Logvalueaxis and multiaxis examples updated
Logvalueaxis and multiaxis examples updated

File last commit:

r2358:9d5a354692be
r2371:64c51f3e619b
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();
}