1 /***************************************************************************
2                           kstartuplogo.h
3                              -------------------
4     copyright            : (C) 2000 by Michael Edwardes <mte@users.sourceforge.net>
5                            (C) 2017 by Łukasz Wojniłowicz <lukasz.wojnilowicz@gmail.com>
6 
7  ***************************************************************************/
8 
9 /***************************************************************************
10  *                                                                         *
11  *   This program is free software; you can redistribute it and/or modify  *
12  *   it under the terms of the GNU General Public License as published by  *
13  *   the Free Software Foundation; either version 2 of the License, or     *
14  *   (at your option) any later version.                                   *
15  *                                                                         *
16  ***************************************************************************/
17 
18 #ifndef KSTARTUPLOGO_H
19 #define KSTARTUPLOGO_H
20 
21 #include <memory>
22 
23 // ----------------------------------------------------------------------------
24 // QT Includes
25 
26 // ----------------------------------------------------------------------------
27 // Project Includes
28 
29 
30 class QSplashScreen;
31 
32 std::unique_ptr<QSplashScreen> createStartupLogo();
33 
34 #endif
35