geos.h 866 B

1234567891011121314151617181920212223242526272829303132333435
  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. #ifndef GEOS_H
  15. #define GEOS_H
  16. /*
  17. * \file geos.h
  18. * \brief
  19. * This file is intended as an include wrapper for client application.
  20. * It includes commonly needed GEOS headers.
  21. */
  22. #include <geos/version.h>
  23. #include <geos/geom.h>
  24. #include <geos/util.h>
  25. #include <geos/io.h>
  26. #include <geos/unload.h>
  27. /// Basic namespace for all GEOS functionalities.
  28. namespace geos {
  29. }
  30. #endif