GEOS  3.4.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 namespace geos {
26 namespace geom { // geos::geom
27 
32 class GEOS_DLL Puntal : public virtual Geometry
33 {
34 protected:
35  Puntal(): Geometry(0) {}
36 };
37 
38 } // namespace geos::geom
39 } // namespace geos
40 
41 #endif // ndef GEOS_GEOM_PUNTAL_H
Definition: Puntal.h:32
Basic implementation of Geometry, constructed and destructed by GeometryFactory.
Definition: Geometry.h:167