// // 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 PANORAMIOPLUGIN_H #define PANORAMIOPLUGIN_H #include "AbstractDataPlugin.h" #include "RenderPlugin.h" #include "RenderPluginInterface.h" #include namespace Marble { class PanoramioPlugin : public AbstractDataPlugin { Q_OBJECT Q_INTERFACES( Marble::RenderPluginInterface ) MARBLE_PLUGIN( PanoramioPlugin ) public: PanoramioPlugin(); void initialize(); QString name() const; QString guiString() const; QString description() const; QIcon icon() const; }; } #endif // PANORAMIOPLUGIN_H