You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
125 lines
3.7 KiB
C
125 lines
3.7 KiB
C
|
3 weeks ago
|
/*=========================================================================
|
||
|
|
|
||
|
|
Program: Visualization Toolkit
|
||
|
|
Module: vtkXMLGenericDataObjectReader.h
|
||
|
|
|
||
|
|
Copyright (c) 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 vtkXMLGenericDataObjectReader
|
||
|
|
* @brief Read any type of vtk data object
|
||
|
|
*
|
||
|
|
* vtkXMLGenericDataObjectReader reads any type of vtk data object encoded
|
||
|
|
* in XML format.
|
||
|
|
*
|
||
|
|
* @sa
|
||
|
|
* vtkGenericDataObjectReader
|
||
|
|
*/
|
||
|
|
|
||
|
|
#ifndef vtkXMLGenericDataObjectReader_h
|
||
|
|
#define vtkXMLGenericDataObjectReader_h
|
||
|
|
|
||
|
|
#include "vtkIOXMLModule.h" // For export macro
|
||
|
|
#include "vtkXMLDataReader.h"
|
||
|
|
|
||
|
|
class vtkHierarchicalBoxDataSet;
|
||
|
|
class vtkHyperOctree;
|
||
|
|
class vtkMultiBlockDataSet;
|
||
|
|
class vtkImageData;
|
||
|
|
class vtkPolyData;
|
||
|
|
class vtkRectilinearGrid;
|
||
|
|
class vtkStructuredGrid;
|
||
|
|
class vtkUnstructuredGrid;
|
||
|
|
|
||
|
|
class VTKIOXML_EXPORT vtkXMLGenericDataObjectReader : public vtkXMLDataReader
|
||
|
|
{
|
||
|
|
public:
|
||
|
|
vtkTypeMacro(vtkXMLGenericDataObjectReader,vtkXMLDataReader);
|
||
|
|
void PrintSelf(ostream& os, vtkIndent indent);
|
||
|
|
static vtkXMLGenericDataObjectReader *New();
|
||
|
|
|
||
|
|
//@{
|
||
|
|
/**
|
||
|
|
* Get the reader's output.
|
||
|
|
*/
|
||
|
|
vtkDataObject *GetOutput();
|
||
|
|
vtkDataObject *GetOutput(int idx);
|
||
|
|
//@}
|
||
|
|
|
||
|
|
//@{
|
||
|
|
/**
|
||
|
|
* Get the output as various concrete types. This method is typically used
|
||
|
|
* when you know exactly what type of data is being read. Otherwise, use
|
||
|
|
* the general GetOutput() method. If the wrong type is used NULL is
|
||
|
|
* returned. (You must also set the filename of the object prior to
|
||
|
|
* getting the output.)
|
||
|
|
*/
|
||
|
|
vtkHierarchicalBoxDataSet *GetHierarchicalBoxDataSetOutput();
|
||
|
|
vtkHyperOctree *GetHyperOctreeOutput();
|
||
|
|
vtkImageData *GetImageDataOutput();
|
||
|
|
vtkMultiBlockDataSet *GetMultiBlockDataSetOutput();
|
||
|
|
vtkPolyData *GetPolyDataOutput();
|
||
|
|
vtkRectilinearGrid *GetRectilinearGridOutput();
|
||
|
|
vtkStructuredGrid *GetStructuredGridOutput();
|
||
|
|
vtkUnstructuredGrid *GetUnstructuredGridOutput();
|
||
|
|
//@}
|
||
|
|
|
||
|
|
/**
|
||
|
|
* Overridden method.
|
||
|
|
*/
|
||
|
|
vtkIdType GetNumberOfPoints();
|
||
|
|
|
||
|
|
/**
|
||
|
|
* Overridden method.
|
||
|
|
*/
|
||
|
|
vtkIdType GetNumberOfCells();
|
||
|
|
|
||
|
|
/**
|
||
|
|
* Overridden method. Not Used. Delegated.
|
||
|
|
*/
|
||
|
|
void SetupEmptyOutput();
|
||
|
|
|
||
|
|
/**
|
||
|
|
* This method can be used to find out the type of output expected without
|
||
|
|
* needing to read the whole file.
|
||
|
|
*/
|
||
|
|
virtual int ReadOutputType(const char *name, bool ¶llel);
|
||
|
|
|
||
|
|
protected:
|
||
|
|
vtkXMLGenericDataObjectReader();
|
||
|
|
~vtkXMLGenericDataObjectReader();
|
||
|
|
|
||
|
|
/**
|
||
|
|
* Overridden method. Not used. Return "vtkDataObject".
|
||
|
|
*/
|
||
|
|
const char* GetDataSetName();
|
||
|
|
|
||
|
|
|
||
|
|
virtual int RequestDataObject(vtkInformation *, vtkInformationVector **,
|
||
|
|
vtkInformationVector *);
|
||
|
|
virtual int RequestInformation(vtkInformation *, vtkInformationVector **,
|
||
|
|
vtkInformationVector *);
|
||
|
|
virtual int RequestUpdateExtent(vtkInformation *request,
|
||
|
|
vtkInformationVector **inputVector,
|
||
|
|
vtkInformationVector *outputVector);
|
||
|
|
|
||
|
|
virtual int RequestData(vtkInformation *, vtkInformationVector **,
|
||
|
|
vtkInformationVector *);
|
||
|
|
virtual int FillOutputPortInformation(int, vtkInformation *);
|
||
|
|
|
||
|
|
vtkXMLReader *Reader; // actual reader
|
||
|
|
|
||
|
|
private:
|
||
|
|
vtkXMLGenericDataObjectReader(const vtkXMLGenericDataObjectReader&) VTK_DELETE_FUNCTION;
|
||
|
|
void operator=(const vtkXMLGenericDataObjectReader&) VTK_DELETE_FUNCTION;
|
||
|
|
};
|
||
|
|
|
||
|
|
#endif
|