JKQtPlotter/examples/jkqtmathtext_test/jkqtmathtext_test.cpp
2019-02-09 18:46:12 +01:00

15 lines
216 B
C++

#include <QApplication>
#include "testform.h"
int main(int argc, char* argv[])
{
QApplication app(argc, argv);
TestForm w;
w.show();
w.updateMath();
w.showMaximized();
return app.exec();
}