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.
Tools/Win64/VTK/include/vtk-9.0/vtkHierarchicalDataExtractD...

50 lines
1.6 KiB
C++

/*=========================================================================
Program: Visualization Toolkit
Module: vtkHierarchicalDataExtractDataSets.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 vtkHierarchicalDataExtractDataSets
* @brief extract a number of datasets
*
* Legacy class. Use vtkExtractDataSets instead.
*
* @sa
* vtkExtractDataSets
*/
#ifndef vtkHierarchicalDataExtractDataSets_h
#define vtkHierarchicalDataExtractDataSets_h
#include "vtkExtractDataSets.h"
#include "vtkFiltersExtractionModule.h" // For export macro
struct vtkHierarchicalDataExtractDataSetsInternals;
class VTKFILTERSEXTRACTION_EXPORT vtkHierarchicalDataExtractDataSets : public vtkExtractDataSets
{
public:
vtkTypeMacro(vtkHierarchicalDataExtractDataSets, vtkExtractDataSets);
void PrintSelf(ostream& os, vtkIndent indent) override;
static vtkHierarchicalDataExtractDataSets* New();
protected:
vtkHierarchicalDataExtractDataSets();
~vtkHierarchicalDataExtractDataSets() override;
private:
vtkHierarchicalDataExtractDataSets(const vtkHierarchicalDataExtractDataSets&) = delete;
void operator=(const vtkHierarchicalDataExtractDataSets&) = delete;
};
#endif