/* ----------------------------------------------------------------------------- Copyright (c) 27.10.2013 Tobias Peters This file is part of Q-Gears Q-Gears is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, version 2.0 (GPLv2) of the License. Q-Gears is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. ----------------------------------------------------------------------------- */ #ifndef __QGearsMapFileManager_H__ #define __QGearsMapFileManager_H__ #include #include "QGearsPrerequisites.h" #include "QGearsMapFile.h" namespace QGears { class _QGearsExport MapFileManager : public Ogre::ResourceManager, public Ogre::Singleton { public: MapFileManager(); virtual ~MapFileManager(); static MapFileManager &getSingleton(); static MapFileManager *getSingletonPtr(); protected: Ogre::Resource *createImpl( const Ogre::String &name, Ogre::ResourceHandle handle , const Ogre::String &group, bool isManual, Ogre::ManualResourceLoader *loader , const Ogre::NameValuePairList *createParams ); private: }; } #endif // __QGearsMapFileManager_H__