File indexing completed on 2024-04-28 15:29:29

0001 /*
0002     testplot_main.cpp
0003     SPDX-FileCopyrightText: 2006 Jason Harris <kstars@30doradus.org>
0004 
0005     SPDX-License-Identifier: GPL-2.0-or-later
0006  */
0007 
0008 #include "testplot_widget.h"
0009 #include <QApplication>
0010 
0011 int main(int argc, char *argv[])
0012 {
0013     QApplication a(argc, argv);
0014     TestPlot *tp = new TestPlot(nullptr);
0015     tp->show();
0016     return a.exec();
0017 }