Skip to content

Commit

Permalink
Updated sip bindings to match changes in r11825
Browse files Browse the repository at this point in the history
git-svn-id: http://svn.osgeo.org/qgis/trunk@11827 c8812cc2-4d05-0410-92ff-de0c093fc19c
  • Loading branch information
timlinux committed Oct 22, 2009
1 parent 9d3f9f8 commit e99592f
Showing 1 changed file with 11 additions and 6 deletions.
17 changes: 11 additions & 6 deletions python/core/qgis.sip
Expand Up @@ -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
Expand Down

0 comments on commit e99592f

Please sign in to comment.