GEOS  3.6.2
TriangleVisitor.h
00001 /**********************************************************************
00002  *
00003  * GEOS - Geometry Engine Open Source
00004  * http://geos.osgeo.org
00005  *
00006  * Copyright (C) 2012 Excensus LLC.
00007  *
00008  * This is free software; you can redistribute and/or modify it under
00009  * the terms of the GNU Lesser General Licence as published
00010  * by the Free Software Foundation. 
00011  * See the COPYING file for more information.
00012  *
00013  **********************************************************************
00014  *
00015  * Last port: triangulate/quadedge/TriangleVisitor.java r524
00016  *
00017  **********************************************************************/
00018 
00019 #ifndef GEOS_TRIANGULATE_QUADEDGE_TRIANGLEVISITOR_H
00020 #define GEOS_TRIANGULATE_QUADEDGE_TRIANGLEVISITOR_H
00021 
00022 #include <geos/triangulate/quadedge/QuadEdge.h>
00023 
00024 namespace geos {
00025 namespace triangulate { //geos.triangulate
00026 namespace quadedge { //geos.triangulate.quadedge
00027 
00034 class GEOS_DLL TriangleVisitor {
00035 public:
00041     virtual void visit(QuadEdge* triEdges[3]) = 0;
00042         virtual ~TriangleVisitor() = 0 ;
00043 private:
00044 } ; 
00045 
00046 } //namespace geos.triangulate.quadedge
00047 } //namespace geos.triangulate
00048 } //namespace goes
00049 
00050 #endif // GEOS_TRIANGULATE_QUADEDGE_TRIANGLEVISITOR_H