36 строки
865 B
C++
36 строки
865 B
C++
/**********************************************************************
|
|
*
|
|
* 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
|