File indexing completed on 2024-04-14 14:16:43

0001 // SPDX-License-Identifier: LGPL-2.1-or-later
0002 //
0003 // SPDX-FileCopyrightText: 2008 Patrick Spendrin <ps_ml@gmx.de>
0004 //
0005 
0006 
0007 #ifndef TCCORE_H
0008 #define TCCORE_H
0009 
0010 
0011 #include <QCoreApplication>
0012 #include <QDebug>
0013 
0014 #include <TileCreator.h>
0015 
0016 namespace Marble
0017 {
0018 
0019 class TCCoreApplication : public QCoreApplication
0020 {
0021     public:
0022         TCCoreApplication( int & argc, char ** argv );
0023 
0024     private:
0025         TileCreator *m_tilecreator;
0026 };
0027 
0028 }
0029 
0030 #endif