VectorizationMode.hpp
1 #ifndef OPALS_VECTORIZATION_MODE_HPP_INCLUDED
2 #define OPALS_VECTORIZATION_MODE_HPP_INCLUDED
3 
4 #include <opals/config.hpp>
5 
6 namespace opals
7 {
8  /// TODO: Enumerator for what?
9  namespace VectorizationMode
10  {
11  enum Type
12  {
13  toPolyline , ///< converts a grid/raster to polyline topology connecting the cell centers
14  toPolygon , ///< converts a grid/raster to polygon topology enclosing the boundary of connected cells
15  Count ///< number of elements
16  };
17  }
18 }
19 
20 #endif