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