// // This file is part of the Marble Desktop Globe. // // This program is free software licensed under the GNU LGPL. You can // find a copy of this license in LICENSE.txt in the top directory of // the source code. // // Copyright 2008 Patrick Spendrin // #ifndef TCCORE_H #define TCCORE_H #include #include #include #include "../lib/TileCreator.h" namespace Marble { class TCCoreApplication : public QCoreApplication { public: TCCoreApplication( int argc, char ** argv ); private: TileCreator *m_tilecreator; }; } #endif