18 #ifndef viskores_io_internal_VTKDataSetStructures_h
19 #define viskores_io_internal_VTKDataSetStructures_h
33 DATASET_STRUCTURED_POINTS,
34 DATASET_STRUCTURED_GRID,
35 DATASET_UNSTRUCTURED_GRID,
37 DATASET_RECTILINEAR_GRID,
41 inline const char* DataSetStructureString(
int id)
43 static const char* strings[] = {
"",
53 inline DataSetStructure DataSetStructureId(
const std::string& str)
55 DataSetStructure structure = DATASET_UNKNOWN;
56 for (
int id = 1;
id < 7; ++id)
58 if (str == DataSetStructureString(
id))
60 structure =
static_cast<DataSetStructure
>(id);
70 #endif // viskores_io_internal_VTKDataSetStructures_h