/*=========================================================================
Program: Visualization Toolkit
Module: vtkXdmfReader.h
Language: C++
Copyright (c) 1993-2002 Ken Martin, Will Schroeder, Bill Lorensen
All rights reserved.
See Copyright.txt or http://www.kitware.com/Copyright.htm for details.
This software is distributed WITHOUT ANY WARRANTY; without even
the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
PURPOSE. See the above copyright notice for more information.
=========================================================================*/
/**
* @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