Skip to content
Snippets Groups Projects
Commit 952eb933 authored by Jan Möbius's avatar Jan Möbius
Browse files

Added gis data type

git-svn-id: http://www.openflipper.org/svnrepo/OpenFlipper/branches/Free@3957 383ad7c9-94d9-4d36-a494-682f7c89f535
parent a419e01f
No related branches found
No related tags found
No related merge requests found
......@@ -78,10 +78,14 @@ enum DataType {
DATA_BSPLINE_SURFACE = 1 << 7,
/// Skeletons
DATA_SKELETON = 1 << 8,
/// Gis Data
DATA_GIS = 1 << 9
};
/// Datatype matching all available types
const DataType DATA_ALL = DataType( DATA_POINTS | DATA_TRIANGLE_MESH | DATA_POLY_MESH | DATA_VOLUME | DATA_POLY_LINE | DATA_BSPLINE_CURVE | DATA_BSPLINE_SURFACE | DATA_SKELETON);
const DataType DATA_ALL = DataType( DATA_POINTS | DATA_TRIANGLE_MESH | DATA_POLY_MESH | DATA_VOLUME | DATA_POLY_LINE | DATA_BSPLINE_CURVE | DATA_BSPLINE_SURFACE | DATA_SKELETON | DATA_GIS );
// TODO: Make types runtime addable
//== INCLUDES =================================================================
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment