GEOS  3.3.3
Boundable.h
1 /**********************************************************************
2  * $Id: Boundable.h 2556 2009-06-06 22:22:28Z strk $
3  *
4  * GEOS - Geometry Engine Open Source
5  * http://geos.refractions.net
6  *
7  * Copyright (C) 2006 Refractions Research Inc.
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 #ifndef GEOS_INDEX_STRTREE_BOUNDABLE_H
17 #define GEOS_INDEX_STRTREE_BOUNDABLE_H
18 
19 #include <geos/export.h>
20 
21 namespace geos {
22 namespace index { // geos::index
23 namespace strtree { // geos::index::strtree
24 
26 class GEOS_DLL Boundable {
27 public:
41  virtual const void* getBounds() const=0;
42  virtual ~Boundable() {};
43 };
44 
45 
46 } // namespace geos::index::strtree
47 } // namespace geos::index
48 } // namespace geos
49 
50 #endif // GEOS_INDEX_STRTREE_BOUNDABLE_H
51 
52 /**********************************************************************
53  * $Log$
54  * Revision 1.1 2006/03/21 10:47:34 strk
55  * indexStrtree.h split
56  *
57  **********************************************************************/
58