File indexing completed on 2024-04-28 16:29:36

0001 /*
0002     SPDX-FileCopyrightText: 2000 Michael Edwardes <mte@users.sourceforge.net>
0003     SPDX-FileCopyrightText: 2017 Łukasz Wojniłowicz <lukasz.wojnilowicz@gmail.com>
0004     SPDX-License-Identifier: GPL-2.0-or-later
0005 */
0006 
0007 #ifndef KSTARTUPLOGO_H
0008 #define KSTARTUPLOGO_H
0009 
0010 #include <memory>
0011 
0012 // ----------------------------------------------------------------------------
0013 // QT Includes
0014 
0015 // ----------------------------------------------------------------------------
0016 // Project Includes
0017 
0018 
0019 class QSplashScreen;
0020 
0021 std::unique_ptr<QSplashScreen> createStartupLogo();
0022 
0023 #endif