mirror of
https://github.com/qgis/QGIS.git
synced 2025-02-25 00:58:06 -05:00
24 lines
404 B
Plaintext
24 lines
404 B
Plaintext
class QgsDartMeasurement
|
|
{
|
|
%TypeHeaderCode
|
|
#include <qgsdartmeasurement.h>
|
|
%End
|
|
public:
|
|
enum Type
|
|
{
|
|
Text,
|
|
ImagePng,
|
|
Integer
|
|
};
|
|
|
|
QgsDartMeasurement();
|
|
|
|
QgsDartMeasurement( const QString& name, Type type, const QString& value );
|
|
|
|
const QString toString() const;
|
|
|
|
void send() const;
|
|
|
|
static const QString typeToString( QgsDartMeasurement::Type type );
|
|
};
|