QGIS/src/app/qgsmaptoolcircularstringcurvepoint.h
Nyall Dawson 07e12e2832 Replace reimplemented default methods by = default
Using clang-tidy modernize-use-equals-default
2017-09-11 17:10:31 +10:00

34 lines
1.5 KiB
C++

/***************************************************************************
qgsmaptoolcircularstringcurvepoint.h - map tool for adding circular
strings by start / curve / endpoint
---------------------
begin : Feb 2015
copyright : (C) 2015 by Marco Hugentobler
email : marco dot hugentobler at sourcepole dot 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 QGSMAPTOOLCIRCULARSTRINGCURVEPOINT_H
#define QGSMAPTOOLCIRCULARSTRINGCURVEPOINT_H
#include "qgsmaptooladdcircularstring.h"
class QgsMapToolCircularStringCurvePoint: public QgsMapToolAddCircularString
{
Q_OBJECT
public:
QgsMapToolCircularStringCurvePoint( QgsMapToolCapture *parentTool, QgsMapCanvas *canvas, CaptureMode mode = CaptureLine );
void cadCanvasReleaseEvent( QgsMapMouseEvent *e ) override;
void cadCanvasMoveEvent( QgsMapMouseEvent *e ) override;
};
#endif // QGSMAPTOOLCIRCULARSTRINGCURVEPOINT_H