VTK
vtkExtractArray.h
Go to the documentation of this file.
1 /*=========================================================================
2 
3  Program: Visualization Toolkit
4  Module: vtkExtractArray.h
5 
6 -------------------------------------------------------------------------
7  Copyright 2008 Sandia Corporation.
8  Under the terms of Contract DE-AC04-94AL85000 with Sandia Corporation,
9  the U.S. Government retains certain rights in this software.
10 -------------------------------------------------------------------------
11 
12  Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen
13  All rights reserved.
14  See Copyright.txt or http://www.kitware.com/Copyright.htm for details.
15 
16  This software is distributed WITHOUT ANY WARRANTY; without even
17  the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
18  PURPOSE. See the above copyright notice for more information.
19 
20 =========================================================================*/
21 
34 #ifndef vtkExtractArray_h
35 #define vtkExtractArray_h
36 
37 #include "vtkFiltersGeneralModule.h" // For export macro
38 #include "vtkArrayDataAlgorithm.h"
39 
41 {
42 public:
43  static vtkExtractArray* New();
45  void PrintSelf(ostream& os, vtkIndent indent);
46 
48 
52 
53 protected:
56 
58 
63 
64 private:
65  vtkExtractArray(const vtkExtractArray&); // Not implemented
66  void operator=(const vtkExtractArray&); // Not implemented
67 
68  vtkIdType Index;
69 };
70 
71 #endif
72 
vtkExtractArray::RequestData
int RequestData(vtkInformation *, vtkInformationVector **, vtkInformationVector *)
vtkArrayDataAlgorithm.h
vtkIdType
int vtkIdType
Definition: vtkType.h:275
vtkInformationVector
Store zero or more vtkInformation instances.
Definition: vtkInformationVector.h:41
vtkTypeMacro
#define vtkTypeMacro(thisClass, superclass)
Definition: vtkSetGet.h:642
vtkX3D::port
@ port
Definition: vtkX3D.h:447
vtkFiltersGeneralModule.h
vtkIndent
a simple class to control print indentation
Definition: vtkIndent.h:39
VTKFILTERSGENERAL_EXPORT
#define VTKFILTERSGENERAL_EXPORT
Definition: vtkFiltersGeneralModule.h:15
vtkExtractArray::~vtkExtractArray
~vtkExtractArray()
vtkExtractArray::FillInputPortInformation
int FillInputPortInformation(int port, vtkInformation *info)
vtkGetMacro
#define vtkGetMacro(name, type)
Definition: vtkSetGet.h:93
vtkArrayDataAlgorithm
Superclass for algorithms that produce vtkArrayDatas as output.
Definition: vtkArrayDataAlgorithm.h:53
vtkInformation
Store vtkAlgorithm input/output information.
Definition: vtkInformation.h:86
vtkSetMacro
vtkSetMacro(IgnoreDriverBugs, bool)
vtkX3D::info
@ info
Definition: vtkX3D.h:376
vtkExtractArray::vtkExtractArray
vtkExtractArray()
vtkExtractArray::New
static vtkExtractArray * New()
vtkExtractArray::PrintSelf
void PrintSelf(ostream &os, vtkIndent indent)
vtkExtractArray
Given a vtkArrayData object containing one-or-more vtkArray instances, produces a vtkArrayData contai...
Definition: vtkExtractArray.h:41