EVOLUTION-MANAGER
Edit File: CoordinateArraySequenceFactory.cpp
/********************************************************************** * * GEOS - Geometry Engine Open Source * http://geos.osgeo.org * * Copyright (C) 2001-2002 Vivid Solutions Inc. * 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. * **********************************************************************/ #include <geos/geom/CoordinateSequenceFactory.h> #include <geos/geom/CoordinateArraySequenceFactory.h> #ifndef GEOS_INLINE # include "geos/geom/CoordinateArraySequenceFactory.inl" #endif namespace geos { namespace geom { // geos::geom static CoordinateArraySequenceFactory defaultCoordinateSequenceFactory; const CoordinateSequenceFactory* CoordinateArraySequenceFactory::instance() { return &defaultCoordinateSequenceFactory; } } // namespace geos::geom } // namespace geos