GEOS 3.6.2
WKBConstants.h
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
23namespace geos {
24namespace io {
25
27namespace 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
Constant values used by the WKB format.
Definition WKBConstants.h:27
const int wkbNDR
Little Endian.
Definition WKBConstants.h:33
const int wkbXDR
Big Endian.
Definition WKBConstants.h:30
Contains the interfaces for converting JTS objects to and from other formats.
Definition Geometry.h:56
Basic namespace for all GEOS functionalities.
Definition IndexedNestedRingTester.h:25