QGIS/src/app/qgsmaptoolsplitfeatures.h

32 lines
1.3 KiB
C
Raw Normal View History

/***************************************************************************
qgsmaptoolsplitfeatures.h
---------------------
begin : August 2007
copyright : (C) 2007 by Marco Hugentobler
email : marco.hugentobler@karto.baug.ethz.ch
***************************************************************************
* *
* This program 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; either version 2 of the License, or *
* (at your option) any later version. *
* *
***************************************************************************/
#ifndef QGSMAPTOOLSPLITFEATURES_H
#define QGSMAPTOOLSPLITFEATURES_H
2015-06-10 13:59:08 +02:00
#include "qgsmaptoolcapture.h"
2017-01-04 12:05:04 +01:00
#include "qgis_app.h"
//! A map tool that draws a line and splits the features cut by the line
class APP_EXPORT QgsMapToolSplitFeatures: public QgsMapToolCapture
{
Q_OBJECT
public:
2017-03-03 08:42:00 +01:00
QgsMapToolSplitFeatures( QgsMapCanvas *canvas );
void cadCanvasReleaseEvent( QgsMapMouseEvent *e ) override;
};
#endif