GEOS  3.3.3
util.h
1 /**********************************************************************
2  * $Id: util.h 2757 2009-12-01 15:39:41Z mloskot $
3  *
4  * GEOS - Geometry Engine Open Source
5  * http://geos.refractions.net
6  *
7  * Copyright (C) 2001-2002 Vivid Solutions Inc.
8  * Copyright (C) 2006 Refractions Research Inc.
9  *
10  * This is free software; you can redistribute and/or modify it under
11  * the terms of the GNU Lesser General Public Licence as published
12  * by the Free Software Foundation.
13  * See the COPYING file for more information.
14  *
15  **********************************************************************
16  *
17  * Utility header to retain a bit of backward compatibility.
18  * Try to avoid including this header directly.
19  *
20  **********************************************************************/
21 
22 #ifndef GEOS_UTIL_H
23 #define GEOS_UTIL_H
24 
25 //#include <geos/util/AssertionFailedException.h>
26 #include <geos/util/GEOSException.h>
27 #include <geos/util/IllegalArgumentException.h>
28 #include <geos/util/TopologyException.h>
29 //#include <geos/util/UnsupportedOperationException.h>
30 //#include <geos/util/CoordinateArrayFilter.h>
31 //#include <geos/util/UniqueCoordinateArrayFilter.h>
32 #include <geos/util/GeometricShapeFactory.h>
33 //#include <geos/util/math.h>
34 
35 //
36 // Private macros definition
37 //
38 
39 namespace geos
40 {
41  template<class T>
42  void ignore_unused_variable_warning(T const& ) {}
43 }
44 
45 
46 #endif // GEOS_UTIL_H