GEOS 3.6.2
util.h
1/**********************************************************************
2 *
3 * GEOS - Geometry Engine Open Source
4 * http://geos.osgeo.org
5 *
6 * Copyright (C) 2001-2002 Vivid Solutions Inc.
7 * Copyright (C) 2006 Refractions Research 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 * Utility header to retain a bit of backward compatibility.
17 * Try to avoid including this header directly.
18 *
19 **********************************************************************/
20
21#ifndef GEOS_UTIL_H
22#define GEOS_UTIL_H
23
24//#include <geos/util/AssertionFailedException.h>
25#include <geos/util/GEOSException.h>
26#include <geos/util/IllegalArgumentException.h>
27#include <geos/util/TopologyException.h>
28//#include <geos/util/UnsupportedOperationException.h>
29//#include <geos/util/CoordinateArrayFilter.h>
30//#include <geos/util/UniqueCoordinateArrayFilter.h>
31#include <geos/util/GeometricShapeFactory.h>
32//#include <geos/util/math.h>
33
34//
35// Private macros definition
36//
37
38namespace geos
39{
40 template<class T>
41 void ignore_unused_variable_warning(T const& ) {}
42}
43
44
45#endif // GEOS_UTIL_H
Basic namespace for all GEOS functionalities.
Definition IndexedNestedRingTester.h:25