00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019 #ifndef GEOS_GEOM_POLYGONAL_H
00020 #define GEOS_GEOM_POLYGONAL_H
00021
00022 #include <geos/export.h>
00023 #include <geos/geom/Geometry.h>
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 {
00032
00037 class GEOS_DLL Polygonal : public virtual Geometry
00038 {
00039 protected:
00040 Polygonal(): Geometry(0) {}
00041 };
00042
00043 }
00044 }
00045
00046 #ifdef _MSC_VER
00047 #pragma warning(pop)
00048 #endif
00049
00050 #endif // ndef GEOS_GEOM_POLYGONAL_H