SpatialQueryMode.hpp
1 #ifndef DM_SPATIAL_QUERY_MODE_HPP_INCLUDED
2 #define DM_SPATIAL_QUERY_MODE_HPP_INCLUDED
3 
4 #ifdef _MSC_VER
5  #pragma once
6 #endif
7 
8 #include "DM/config.hpp"
9 
10 DM_NAMESPACE_BEGIN
11 
12 namespace SpatialQueryMode {
13 
14  enum Type { Intersect = 0, ///< search geometries that intersect the query object
15  Contained = 1 ///< search geometries that are fully contained by the query object
16  };
17 
18 }
19 
20 DM_NAMESPACE_END
21 
22 #endif //DM_NAMESPACE_BEGIN