Complete Note#1 in the http://wiki.osgeo.org/wiki/GEOS_Provenance_Review to get out...
[geos.git] / include / geos / algorithm / PointInRing.h
blobd1faa0156dde41fbd61bda29483f19a7841cfbba
1 /**********************************************************************
3 * GEOS - Geometry Engine Open Source
4 * http://geos.osgeo.org
6 * Copyright (C) 2005-2006 Refractions Research Inc.
7 * Copyright (C) 2001-2002 Vivid Solutions Inc.
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.
14 **********************************************************************/
16 #ifndef GEOS_ALGORITHM_POINTINRING_H
17 #define GEOS_ALGORITHM_POINTINRING_H
19 #include <geos/export.h>
21 // Forward declarations
22 namespace geos {
23 namespace geom {
24 class Coordinate;
28 namespace geos {
29 namespace algorithm { // geos::algorithm
31 class GEOS_DLL PointInRing{
32 public:
33 virtual ~PointInRing(){}
34 virtual bool isInside(const geom::Coordinate& pt)=0;
37 } // namespace geos::algorithm
38 } // namespace geos
41 #endif
43 /**********************************************************************
44 * $Log$
45 * Revision 1.1 2006/03/09 16:46:48 strk
46 * geos::geom namespace definition, first pass at headers split
48 **********************************************************************/