VTK
vtkExtractSelectedRows.h
Go to the documentation of this file.
1 /*=========================================================================
2 
3  Program: Visualization Toolkit
4  Module: vtkExtractSelectedRows.h
5 
6  Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen
7  All rights reserved.
8  See Copyright.txt or http://www.kitware.com/Copyright.htm for details.
9 
10  This software is distributed WITHOUT ANY WARRANTY; without even
11  the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
12  PURPOSE. See the above copyright notice for more information.
13 
14 =========================================================================*/
15 /*-------------------------------------------------------------------------
16  Copyright 2008 Sandia Corporation.
17  Under the terms of Contract DE-AC04-94AL85000 with Sandia Corporation,
18  the U.S. Government retains certain rights in this software.
19 -------------------------------------------------------------------------*/
31 #ifndef vtkExtractSelectedRows_h
32 #define vtkExtractSelectedRows_h
33 
34 #include "vtkFiltersExtractionModule.h" // For export macro
35 #include "vtkTableAlgorithm.h"
36 
37 
39 {
40 public:
41  static vtkExtractSelectedRows* New();
43  void PrintSelf(ostream& os, vtkIndent indent);
44 
47  void SetSelectionConnection(vtkAlgorithmOutput* in);
48 
51  void SetAnnotationLayersConnection(vtkAlgorithmOutput* in);
52 
55 
57 
59  vtkSetMacro(AddOriginalRowIdsArray, bool);
60  vtkGetMacro(AddOriginalRowIdsArray, bool);
61  vtkBooleanMacro(AddOriginalRowIdsArray, bool);
63 
64 protected:
67 
68  int RequestData(
72 
74 private:
75  vtkExtractSelectedRows(const vtkExtractSelectedRows&); // Not implemented
76  void operator=(const vtkExtractSelectedRows&); // Not implemented
77 };
78 
79 #endif
80 
void PrintSelf(ostream &os, vtkIndent indent)
static vtkTableAlgorithm * New()
Store vtkAlgorithm input/output information.
Proxy object to connect input/output ports.
a simple class to control print indentation
Definition: vtkIndent.h:38
virtual int FillInputPortInformation(int port, vtkInformation *info)
#define VTKFILTERSEXTRACTION_EXPORT
return selected rows of a table
virtual int RequestData(vtkInformation *request, vtkInformationVector **inputVector, vtkInformationVector *outputVector)
Superclass for algorithms that produce only vtkTables as output.
Store zero or more vtkInformation instances.