DataSetType.hpp
1 #ifndef OPALS_DATA_SET_TYPE_HPP_INCLUDED
2 #define OPALS_DATA_SET_TYPE_HPP_INCLUDED
3 
4 #include <opals/config.hpp>
5 
6 namespace opals
7 {
8  /// Possible data set types as used in DataSetStats (see opalsInfo)
9  namespace DataSetType
10  {
11  enum Type
12  {
13  odm , ///< OPALS Datamanager file
14  vector , ///< General vector data file (las, shp, ..)
15  grid , ///< Grid data file
16  tin , ///< Triangulation data file
17  Count ///< number of elements
18  };
19  }
20 }
21 
22 #endif