1/*
2 testplot_main.cpp
3 SPDX-FileCopyrightText: 2006 Jason Harris <kstars@30doradus.org>
4
5 SPDX-License-Identifier: GPL-2.0-or-later
6 */
7
8#include "testplot_widget.h"
9#include <QApplication>
10
11int main(int argc, char *argv[])
12{
13 QApplication a(argc, argv);
14 TestPlot *tp = new TestPlot(nullptr);
15 tp->show();
16 return a.exec();
17}
18

source code of kplotting/examples/testplot_main.cpp