GEOS
3.6.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 #ifdef _MSC_VER 00026 #pragma warning(push) 00027 #pragma warning(disable: 4589) // warning C4589 : Constructor of abstract class 'Puntal' ignores initializer for virtual base class 'Geometry' 00028 #endif 00029 00030 namespace geos { 00031 namespace geom { // geos::geom 00032 00037 class GEOS_DLL Puntal : public virtual Geometry 00038 { 00039 protected: 00040 Puntal(): Geometry(0) {} 00041 }; 00042 00043 } // namespace geos::geom 00044 } // namespace geos 00045 00046 #ifdef _MSC_VER 00047 #pragma warning(pop) 00048 #endif 00049 00050 #endif // ndef GEOS_GEOM_PUNTAL_H