Quantum GIS API Documentation  1.7.4
src/plugins/qgsrendererplugin.h
Go to the documentation of this file.
00001 /***************************************************************************
00002                          qgsrendererplugin.h  -  description
00003                              -------------------
00004     begin                : April 2006
00005     copyright            : (C) 2006 by Marco Hugentobler
00006     email                : marco dot hugentobler at karto dot baug dot ethz dot ch
00007  ***************************************************************************/
00008 
00009 /***************************************************************************
00010  *                                                                         *
00011  *   This program is free software; you can redistribute it and/or modify  *
00012  *   it under the terms of the GNU General Public License as published by  *
00013  *   the Free Software Foundation; either version 2 of the License, or     *
00014  *   (at your option) any later version.                                   *
00015  *                                                                         *
00016  ***************************************************************************/
00017 
00018 #ifndef QGSRENDERERPLUGIN_H
00019 #define QGSRENDERERPLUGIN_H
00020 
00021 #include "qgisplugin.h"
00022 
00023 class QgsRenderer;
00024 class QDialog;
00025 class QString;
00026 
00030 class QgsRendererPlugin: public QgisPlugin
00031 {
00032   public:
00033     QgsRendererPlugin( const QString& name, const QString& description, const QString& version ): QgisPlugin( name, description, version, QgisPlugin::RENDERER ) {}
00034     virtual ~QgsRendererPlugin() {}
00035     virtual QDialog* rendererDialog() = 0;
00036     virtual QgsRenderer* renderer() = 0;
00037 };
00038 
00039 #endif
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Defines