QGIS/python/core/qgsdartmeasurement.sip

24 lines
404 B
Plaintext
Raw Normal View History

2015-06-11 19:16:55 +02:00
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 );
};