JKQtPlotter/test/jkqtfastplotter_test/jkqtfastplotter_test.cpp

10 lines
176 B
C++
Raw Normal View History

#include <QApplication>
#include "testmain.h"
int main(int argc, char *argv[]) {
QApplication a(argc, argv);
TestMain w;
w.show();
return a.exec();
}