GEOS  3.9.1dev
WKBConstants.h
Go to the documentation of this file.
1 /**********************************************************************
2  *
3  * GEOS - Geometry Engine Open Source
4  * http://geos.osgeo.org
5  *
6  * Copyright (C) 2005-2006 Refractions Research Inc.
7  * Copyright (C) 2001-2002 Vivid Solutions Inc.
8  *
9  * This is free software; you can redistribute and/or modify it under
10  * the terms of the GNU Lesser General Public Licence as published
11  * by the Free Software Foundation.
12  * See the COPYING file for more information.
13  *
14  **********************************************************************
15  *
16  * Last port: io/WKBConstants.java rev. 1.1 (JTS-1.10)
17  *
18  **********************************************************************/
19 
20 #ifndef GEOS_IO_WKBCONSTANTS_H
21 #define GEOS_IO_WKBCONSTANTS_H
22 
23 namespace geos {
24 namespace io {
25 
27 namespace WKBConstants {
28 
30 const int wkbXDR = 0;
31 
33 const int wkbNDR = 1;
34 
35 const int wkbPoint = 1;
36 const int wkbLineString = 2;
37 const int wkbPolygon = 3;
38 const int wkbMultiPoint = 4;
39 const int wkbMultiLineString = 5;
40 const int wkbMultiPolygon = 6;
41 const int wkbGeometryCollection = 7;
42 }
43 
44 } // namespace geos::io
45 } // namespace geos
46 
47 #endif // #ifndef GEOS_IO_WKBCONSTANTS_H
const int wkbMultiLineString
Definition: WKBConstants.h:39
const int wkbGeometryCollection
Definition: WKBConstants.h:41
const int wkbNDR
Little Endian.
Definition: WKBConstants.h:33
Basic namespace for all GEOS functionalities.
const int wkbXDR
Big Endian.
Definition: WKBConstants.h:30