mirror of
https://github.com/qgis/QGIS.git
synced 2025-04-14 00:07:35 -04:00
36 lines
1.4 KiB
C++
36 lines
1.4 KiB
C++
/***************************************************************************
|
|
QgsMapToolHtmlAnnotation.h
|
|
-----------------------------
|
|
begin : February 9, 2010
|
|
copyright : (C) 2010 by Marco Hugentobler
|
|
email : marco dot hugentobler at hugis dot net
|
|
***************************************************************************/
|
|
|
|
/***************************************************************************
|
|
* *
|
|
* 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 QGSMAPTOOLHTMLANNOTATION_H
|
|
#define QGSMAPTOOLHTMLANNOTATION_H
|
|
|
|
#include "qgsmaptoolannotation.h"
|
|
#include "qgis_app.h"
|
|
|
|
class APP_EXPORT QgsMapToolHtmlAnnotation: public QgsMapToolAnnotation
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
QgsMapToolHtmlAnnotation( QgsMapCanvas *canvas );
|
|
|
|
protected:
|
|
QgsAnnotation *createItem() const override;
|
|
};
|
|
|
|
#endif // QgsMapToolHtmlAnnotation_H
|