GEOS 3.11.1
geos.h
1/**********************************************************************
2 *
3 * GEOS - Geometry Engine Open Source
4 * http://geos.osgeo.org
5 *
6 * Copyright (C) 2005 Refractions Research Inc.
7 *
8 * This is free software; you can redistribute and/or modify it under
9 * the terms of the GNU Lesser General Public Licence as published
10 * by the Free Software Foundation.
11 * See the COPYING file for more information.
12 *
13 **********************************************************************/
14
15#pragma once
16
17/*
18 * \file geos.h
19 * \brief
20 * This file is intended as an include wrapper for client application.
21 * It includes commonly needed GEOS headers.
22 */
23
24#include <geos/version.h>
25#include <geos/geom.h>
26#include <geos/util.h>
27#include <geos/io/ByteOrderDataInStream.h>
28#include <geos/io/ByteOrderValues.h>
29#include <geos/io/ParseException.h>
30#include <geos/io/WKBConstants.h>
31#include <geos/io/WKBReader.h>
32#include <geos/io/WKBWriter.h>
33#include <geos/io/WKTReader.h>
34#include <geos/io/WKTWriter.h>
35#include <geos/io/CLocalizer.h>
36#include <geos/unload.h>
37
39namespace geos {
40}
Basic namespace for all GEOS functionalities.
Definition: geos.h:39