QGIS/python/core/qgsdartmeasurement.sip
2015-06-11 19:19:00 +02:00

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 );
};