File indexing completed on 2024-06-16 04:08:55

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 {
0014     QApplication app( argc, argv );
0015 
0016     MainWindow mainWindow;
0017     mainWindow.show();
0018 
0019     return app.exec();
0020 }