1234567891011121314151617181920212223242526272829303132333435 |
- /**********************************************************************
- *
- * GEOS - Geometry Engine Open Source
- * http://geos.osgeo.org
- *
- * Copyright (C) 2005 Refractions Research Inc.
- *
- * This is free software; you can redistribute and/or modify it under
- * the terms of the GNU Lesser General Public Licence as published
- * by the Free Software Foundation.
- * See the COPYING file for more information.
- *
- **********************************************************************/
- #ifndef GEOS_H
- #define GEOS_H
- /*
- * \file geos.h
- * \brief
- * This file is intended as an include wrapper for client application.
- * It includes commonly needed GEOS headers.
- */
- #include <geos/version.h>
- #include <geos/geom.h>
- #include <geos/util.h>
- #include <geos/io.h>
- #include <geos/unload.h>
- /// Basic namespace for all GEOS functionalities.
- namespace geos {
- }
- #endif
|