File indexing completed on 2024-12-22 03:46:51
0001 /* 0002 This file is part of the KTextTemplate library 0003 0004 SPDX-FileCopyrightText: 2011 Stephen Kelly <steveire@gmail.com> 0005 0006 SPDX-License-Identifier: LGPL-2.1-or-later 0007 0008 */ 0009 0010 #include <QApplication> 0011 0012 #include "mainwindow.h" 0013 0014 int main(int argc, char **argv) 0015 { 0016 QApplication app(argc, argv); 0017 0018 MainWindow mw; 0019 mw.show(); 0020 0021 return app.exec(); 0022 }