Quantum GIS API Documentation  1.8
src/plugins/qgsvectoroverlayplugin.h
Go to the documentation of this file.
00001 /***************************************************************************
00002                         qgsvectoroverlayplugin.h  -  description
00003                         ------------------------
00004    begin                : January 2007
00005    copyright            : (C) 2007 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 QGSVECTOROVERLAYPLUGIN_H
00019 #define QGSVECTOROVERLAYPLUGIN_H
00020 
00021 #include "qgisplugin.h"
00022 
00023 class QgsApplyDialog;
00024 class QgsVectorLayer;
00025 class QWidget;
00026 
00028 class QgsVectorOverlayPlugin: public QgisPlugin
00029 {
00030   public:
00031     QgsVectorOverlayPlugin( const QString& name, const QString& description, const QString& category, const QString& version ): QgisPlugin( name, description, category, version, QgisPlugin::VECTOR_OVERLAY ) {}
00032 
00033     virtual ~QgsVectorOverlayPlugin() {}
00034 
00036     virtual QgsApplyDialog* dialog( QgsVectorLayer* vl ) const = 0;
00037 };
00038 
00039 #endif
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Defines