GEOS 3.6.2
Lineal.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/Lineal.java r320 (JTS-1.12)
16 *
17 **********************************************************************/
18
19#ifndef GEOS_GEOM_LINEAL_H
20#define GEOS_GEOM_LINEAL_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 'Lineal' ignores initializer for virtual base class 'Geometry'
28#endif
29
30namespace geos {
31namespace geom { // geos::geom
32
37class GEOS_DLL Lineal : public virtual Geometry
38{
39protected:
40 Lineal(): 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_LINEAL_H
Geometry(const Geometry &geom)
Polygon overrides to check for actual rectangle.
Contains the Geometry interface hierarchy and supporting classes.
Definition IndexedNestedRingTester.h:26
Basic namespace for all GEOS functionalities.
Definition IndexedNestedRingTester.h:25