File indexing completed on 2023-09-24 04:09:50
0001 /* 0002 SPDX-FileCopyrightText: 2009 Stephen Kelly <steveire@gmail.com> 0003 0004 SPDX-License-Identifier: LGPL-2.1-or-later 0005 */ 0006 0007 #include "mainwindow.h" 0008 0009 #include <QApplication> 0010 0011 int main(int argc, char **argv) 0012 { 0013 QApplication app(argc, argv); 0014 MainWindow *mw = new MainWindow(); 0015 mw->show(); 0016 app.exec(); 0017 }