GEOS 3.6.2
PointOnGeometryLocator.h
1/**********************************************************************
2 *
3 * GEOS - Geometry Engine Open Source
4 * http://geos.osgeo.org
5 *
6 * Copyright (C) 2006 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 **********************************************************************/
15
16#ifndef GEOS_ALGORITHM_LOCATE_POINTONGEOMETRYLOCATOR_H
17#define GEOS_ALGORITHM_LOCATE_POINTONGEOMETRYLOCATOR_H
18
19namespace geos {
20 namespace geom {
21 class Coordinate;
22 }
23}
24
25namespace geos {
26namespace algorithm { // geos::algorithm
27namespace locate { // geos::algorithm::locate
28
36{
37private:
38protected:
39public:
41 { }
42
49 virtual int locate( const geom::Coordinate * /*const*/ p) =0;
50};
51
52} // geos::algorithm::locate
53} // geos::algorithm
54} // geos
55
56#endif // GEOS_ALGORITHM_LOCATE_POINTONGEOMETRYLOCATOR_H
An interface for classes which determine the Location of points in Polygon or MultiPolygon geometries...
Definition PointOnGeometryLocator.h:36
virtual int locate(const geom::Coordinate *p)=0
Coordinate is the lightweight class used to store coordinates.
Definition Coordinate.h:60
Classes which determine the Location of points in geometries.
Definition IndexedPointInAreaLocator.h:43
Contains classes and interfaces implementing fundamental computational geometry algorithms.
Definition Angle.h:33
Contains the Geometry interface hierarchy and supporting classes.
Definition IndexedNestedRingTester.h:26
Basic namespace for all GEOS functionalities.
Definition IndexedNestedRingTester.h:25