mirror of
https://github.com/jkriege2/JKQtPlotter.git
synced 2024-11-16 02:25:50 +08:00
16 lines
227 B
C++
16 lines
227 B
C++
#include <QApplication>
|
|
#include <QtGui>
|
|
#include <cmath>
|
|
#include "testmain.h"
|
|
|
|
int main(int argc, char* argv[])
|
|
{
|
|
QApplication app(argc, argv);
|
|
|
|
TestMain tab;
|
|
|
|
tab.show();
|
|
|
|
return app.exec();
|
|
}
|