// // 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 2009 Bastian Holst // #ifndef PHOTOPLUGIN_H #define PHOTOPLUGIN_H #include "AbstractDataPlugin.h" class QIcon; namespace Marble { class PhotoPlugin : public AbstractDataPlugin { Q_OBJECT Q_INTERFACES( Marble::RenderPluginInterface ) MARBLE_PLUGIN( PhotoPlugin ) public: PhotoPlugin(); void initialize(); bool isInitialized () const; QString name() const; QString guiString() const; QString description() const; QIcon icon() const; private: bool m_isInitialized; }; } #endif //PHOTOPLUGIN_H