mirror of
https://github.com/qgis/QGIS.git
synced 2025-02-25 00:58:06 -05:00
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:
parent
9d3f9f8715
commit
e99592f10b
@ -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
|
||||
|
Loading…
x
Reference in New Issue
Block a user