mirror of
https://github.com/qgis/QGIS.git
synced 2025-04-04 00:06:15 -04:00
fix OGRSpatialReferenceH member declaration
This commit is contained in:
parent
331ef1b3a6
commit
f24862ae16
@ -35,10 +35,15 @@ typedef struct sqlite3 sqlite3;
|
||||
//qgis includes
|
||||
#include "qgis.h"
|
||||
|
||||
#ifdef DEBUG
|
||||
typedef struct OGRSpatialReferenceHS *OGRSpatialReferenceH;
|
||||
#else
|
||||
typedef void *OGRSpatialReferenceH;
|
||||
#endif
|
||||
|
||||
class QgsCoordinateReferenceSystem;
|
||||
typedef void ( *CUSTOM_CRS_VALIDATION )( QgsCoordinateReferenceSystem* );
|
||||
|
||||
|
||||
/** \ingroup core
|
||||
* Class for storing a coordinate reference system (CRS)
|
||||
*/
|
||||
@ -472,7 +477,7 @@ class CORE_EXPORT QgsCoordinateReferenceSystem
|
||||
//! Helper for sql-safe value quoting
|
||||
static QString quotedValue( QString value );
|
||||
|
||||
void *mCRS;
|
||||
OGRSpatialReferenceH mCRS;
|
||||
|
||||
bool loadFromDb( QString db, QString expression, QString value );
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user