GEOS  3.3.3
Puntal.h
1 /**********************************************************************
2  * $Id: Puntal.h 3232 2011-02-22 21:22:19Z strk $
3  *
4  * GEOS - Geometry Engine Open Source
5  * http://geos.refractions.net
6  *
7  * Copyright (C) 2011 Sandro Santilli <strk@keybit.net>
8  *
9  * This is free software; you can redistribute and/or modify it under
10  * the terms of the GNU Lesser General Public Licence as published
11  * by the Free Software Foundation.
12  * See the COPYING file for more information.
13  *
14  **********************************************************************
15  *
16  * Last port: geom/Puntal.java r320 (JTS-1.12)
17  *
18  **********************************************************************/
19 
20 #ifndef GEOS_GEOM_PUNTAL_H
21 #define GEOS_GEOM_PUNTAL_H
22 
23 #include <geos/export.h>
24 #include <geos/geom/Geometry.h> // for inheritance
25 
26 namespace geos {
27 namespace geom { // geos::geom
28 
33 class GEOS_DLL Puntal : public virtual Geometry
34 {
35 protected:
36  Puntal(): Geometry(0) {}
37 };
38 
39 } // namespace geos::geom
40 } // namespace geos
41 
42 #endif // ndef GEOS_GEOM_PUNTAL_H