aboutsummaryrefslogtreecommitdiff
path: root/tools/CurveEditor/source/GraphEditorTestApp/main.cpp
blob: ecc3a7506df825049448cdee502fde1079ea1fc4 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
#include "CurveEditorTestApp.h"
#include <QtWidgets/QApplication>

int main(int argc, char *argv[])
{
    QApplication a(argc, argv);
    CurveEditorTestApp w;
    w.show();
    return a.exec();
}