File indexing completed on 2025-01-26 04:02:43

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 
0011 #include "mainwindow.h"
0012 
0013 int main( int argc,  char** argv )
0014 {
0015     QApplication app( argc, argv );
0016 
0017     MainWindow mainWindow;
0018     mainWindow.show();
0019 
0020     return app.exec();
0021 }