// SPDX-FileCopyrightText: Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen
// SPDX-License-Identifier: BSD-3-Clause
/**
* @class vtkXdmfReader
* @brief Reads eXtensible Data Model and Format files
*
* vtkXdmfReader reads XDMF data files so that they can be visualized using
* VTK. The output data produced by this reader depends on the number of grids
* in the data file. If the data file has a single domain with a single grid,
* then the output type is a vtkDataSet subclass of the appropriate type,
* otherwise it's a vtkMultiBlockDataSet.
*
* Refer to vtkDataReader which provides many methods for controlling the
* reading of the data file.
* @warning
* Uses the XDMF API (http://www.xdmf.org)
* @sa
* vtkDataReader
*/
#ifndef vtkXdmfReader_h
#define vtkXdmfReader_h
#include "vtkDataObjectAlgorithm.h"
#include "vtkIOXdmf2Module.h" // For export macro
#include