mirror of
https://github.com/qgis/QGIS.git
synced 2025-10-15 00:02:52 -04:00
39 lines
632 B
C++
39 lines
632 B
C++
#ifndef QGIS_H
|
|
#define QGIS_H
|
|
/*! \mainpage Quantum GIS
|
|
*
|
|
* \section about About QGis
|
|
* QGis aims to be an easy to use desktop GIS tool. Initial focus is on viewing spatial
|
|
* and tabular data from common data stores, including Shapefiles and PostGIS.
|
|
*
|
|
* This API documentation provides information about all classes that make up QGis.
|
|
*
|
|
*/
|
|
/* Id */
|
|
|
|
namespace QGis
|
|
{
|
|
enum MapTools
|
|
{
|
|
ZoomIn,
|
|
ZoomOut,
|
|
Pan,
|
|
Distance,
|
|
Identify,
|
|
Table,
|
|
Select
|
|
};
|
|
//! Used for symbology operations
|
|
enum WKBTYPE
|
|
{
|
|
WKBPoint = 1,
|
|
WKBLineString,
|
|
WKBPolygon,
|
|
WKBMultiPoint,
|
|
WKBMultiLineString,
|
|
WKBMultiPolygon
|
|
};
|
|
|
|
}
|
|
#endif
|