JKQtPlotter/examples/jkqtmathtext_test/jkqtmathtext_test.cpp

15 lines
216 B
C++
Raw Normal View History

#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();
}