File indexing completed on 2024-12-22 05:13:40
0001 /* 0002 SPDX-FileCopyrightText: 2015 Ivan Cukic <ivan.cukic(at)kde.org> 0003 0004 SPDX-License-Identifier: GPL-2.0-or-later 0005 */ 0006 0007 #include "window.h" 0008 #include <QApplication> 0009 0010 int main(int argc, char *argv[]) 0011 { 0012 QApplication app(argc, argv); 0013 0014 Window w; 0015 w.show(); 0016 0017 return app.exec(); 0018 }