/* SPDX-FileCopyrightText: 2009 Stephen Kelly SPDX-License-Identifier: LGPL-2.1-or-later */ #include "mainwindow.h" #include int main(int argc, char **argv) { QApplication app(argc, argv); MainWindow *mw = new MainWindow(); mw->show(); return app.exec(); }