File indexing completed on 2025-02-16 04:03:07
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 QApplication app( argc, argv ); 0015 0016 MainWindow mainWindow; 0017 mainWindow.show(); 0018 0019 return app.exec(); 0020 }