QGIS/src/qgis.h
gsherman e39c81b803 minor bug fixes
git-svn-id: http://svn.osgeo.org/qgis/trunk@247 c8812cc2-4d05-0410-92ff-de0c093fc19c
2003-08-26 05:24:04 +00:00

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