GEOS
3.4.2
|
00001 /********************************************************************** 00002 * 00003 * GEOS - Geometry Engine Open Source 00004 * http://geos.osgeo.org 00005 * 00006 * Copyright (C) 2011 Sandro Santilli <strk@keybit.net> 00007 * 00008 * This is free software; you can redistribute and/or modify it under 00009 * the terms of the GNU Lesser General Public Licence as published 00010 * by the Free Software Foundation. 00011 * See the COPYING file for more information. 00012 * 00013 ********************************************************************** 00014 * 00015 * Last port: geom/Puntal.java r320 (JTS-1.12) 00016 * 00017 **********************************************************************/ 00018 00019 #ifndef GEOS_GEOM_PUNTAL_H 00020 #define GEOS_GEOM_PUNTAL_H 00021 00022 #include <geos/export.h> 00023 #include <geos/geom/Geometry.h> // for inheritance 00024 00025 namespace geos { 00026 namespace geom { // geos::geom 00027 00032 class GEOS_DLL Puntal : public virtual Geometry 00033 { 00034 protected: 00035 Puntal(): Geometry(0) {} 00036 }; 00037 00038 } // namespace geos::geom 00039 } // namespace geos 00040 00041 #endif // ndef GEOS_GEOM_PUNTAL_H