GEOS  3.6.2
Puntal.h
1 /**********************************************************************
2  *
3  * GEOS - Geometry Engine Open Source
4  * http://geos.osgeo.org
5  *
6  * Copyright (C) 2011 Sandro Santilli <strk@keybit.net>
7  *
8  * This is free software; you can redistribute and/or modify it under
9  * the terms of the GNU Lesser General Public Licence as published
10  * by the Free Software Foundation.
11  * See the COPYING file for more information.
12  *
13  **********************************************************************
14  *
15  * Last port: geom/Puntal.java r320 (JTS-1.12)
16  *
17  **********************************************************************/
18 
19 #ifndef GEOS_GEOM_PUNTAL_H
20 #define GEOS_GEOM_PUNTAL_H
21 
22 #include <geos/export.h>
23 #include <geos/geom/Geometry.h> // for inheritance
24 
25 #ifdef _MSC_VER
26 #pragma warning(push)
27 #pragma warning(disable: 4589) // warning C4589 : Constructor of abstract class 'Puntal' ignores initializer for virtual base class 'Geometry'
28 #endif
29 
30 namespace geos {
31 namespace geom { // geos::geom
32 
37 class GEOS_DLL Puntal : public virtual Geometry
38 {
39 protected:
40  Puntal(): Geometry(0) {}
41 };
42 
43 } // namespace geos::geom
44 } // namespace geos
45 
46 #ifdef _MSC_VER
47 #pragma warning(pop)
48 #endif
49 
50 #endif // ndef GEOS_GEOM_PUNTAL_H
Definition: Puntal.h:37
Basic implementation of Geometry, constructed and destructed by GeometryFactory.
Definition: Geometry.h:167
Basic namespace for all GEOS functionalities.
Definition: IndexedNestedRingTester.h:25