GEOS
3.7.2
include
geos
index
strtree
ItemBoundable.h
1
/**********************************************************************
2
*
3
* GEOS - Geometry Engine Open Source
4
* http://geos.osgeo.org
5
*
6
* Copyright (C) 2006 Refractions Research Inc.
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
#ifndef GEOS_INDEX_STRTREE_ITEMBOUNDABLE_H
15
#define GEOS_INDEX_STRTREE_ITEMBOUNDABLE_H
16
17
#include <geos/export.h>
18
19
#include <geos/index/strtree/Boundable.h>
// for inheritance
20
21
namespace
geos
{
22
namespace
index {
// geos::index
23
namespace
strtree {
// geos::index::strtree
24
32
class
GEOS_DLL ItemBoundable:
public
Boundable
33
{
34
public
:
35
36
ItemBoundable(
const
void
* newBounds,
void
* newItem);
37
~ItemBoundable()
override
=
default
;
38
39
const
void
* getBounds()
const override
;
40
void
* getItem()
const
;
41
42
private
:
43
44
const
void
* bounds;
45
void
* item;
46
};
47
48
}
// namespace geos::index::strtree
49
}
// namespace geos::index
50
}
// namespace geos
51
52
#endif // GEOS_INDEX_STRTREE_ITEMBOUNDABLE_H
geos
Basic namespace for all GEOS functionalities.
Definition:
IndexedNestedRingTester.h:25
Generated by
1.8.17