File indexing completed on 2024-05-12 04:20:46

0001 /**
0002  * SPDX-FileCopyrightText: 2001-2015 Klaralvdalens Datakonsult AB. All rights reserved.
0003  *
0004  * This file is part of the KD Chart library.
0005  *
0006  * SPDX-License-Identifier: GPL-2.0-or-later
0007  */
0008 
0009 #include <QApplication>
0010 #include "mainwindow.h"
0011 
0012 int main( int argc, char** argv ) {
0013     QApplication app( argc, argv );
0014 
0015     MainWindow mainWindow;
0016     mainWindow.show();
0017 
0018     return app.exec();
0019 }