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