Updated sip bindings to match changes in r11825

git-svn-id: http://svn.osgeo.org/qgis/trunk@11827 c8812cc2-4d05-0410-92ff-de0c093fc19c
This commit is contained in:
timlinux 2009-10-22 11:34:42 +00:00
parent 9d3f9f8715
commit e99592f10b

View File

@ -70,14 +70,19 @@ public:
//! description strings for feature types
//static const char *qgisFeatureTypes[];
//! map units that qgis supports
/** Map units that qgis supports
* @note that QGIS < 1.4 api had only Meters, Feet, Degrees and UnknownUnit
*/
enum UnitType
{
Meters,
Feet,
Degrees,
UnknownUnit
};
Meters = 0,
Feet = 1,
Degrees = 2, //for 1.0 api backwards compatibility
DecimalDegrees = 2,
DegreesMinutesSeconds = 4,
DegreesDecimalMinutes = 5,
UnknownUnit = 3
} ;
//! User defined event types
enum UserEvent