VTK
vtkTransferAttributes.h
Go to the documentation of this file.
1 /*=========================================================================
2 
3 Program: Visualization Toolkit
4 Module: vtkTransferAttributes.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  -------------------------------------------------------------------------*/
37 #ifndef vtkTransferAttributes_h
38 #define vtkTransferAttributes_h
39 
40 #include "vtkInfovisCoreModule.h" // For export macro
42 #include "vtkVariant.h" //For vtkVariant method arguments
43 
45 {
46 public:
53 
55  void PrintSelf(ostream& os, vtkIndent indent);
56 
58 
61  vtkSetMacro(DirectMapping, bool);
62  vtkGetMacro(DirectMapping, bool);
63  vtkBooleanMacro(DirectMapping, bool);
65 
67 
68  vtkGetStringMacro(SourceArrayName);
69  vtkSetStringMacro(SourceArrayName);
71 
73 
74  vtkGetStringMacro(TargetArrayName);
75  vtkSetStringMacro(TargetArrayName);
77 
79 
81  vtkGetMacro(SourceFieldType, int);
82  vtkSetMacro(SourceFieldType, int);
84 
86 
88  vtkGetMacro(TargetFieldType, int);
89  vtkSetMacro(TargetFieldType, int);
91 
93 
97 
100 
101 protected:
104 
110 
112 
114 
116 private:
117  vtkTransferAttributes(const vtkTransferAttributes&); // Not implemented.
118  void operator=(const vtkTransferAttributes&); // Not implemented.
119 };
121 
122 #endif
VTKINFOVISCORE_EXPORT
#define VTKINFOVISCORE_EXPORT
Definition: vtkInfovisCoreModule.h:15
vtkTransferAttributes::SetDefaultValue
void SetDefaultValue(vtkVariant value)
vtkVariant.h
vtkPassInputTypeAlgorithm.h
vtkTransferAttributes::RequestData
int RequestData(vtkInformation *, vtkInformationVector **, vtkInformationVector *)
vtkInformationVector
Store zero or more vtkInformation instances.
Definition: vtkInformationVector.h:41
vtkTransferAttributes::GetDefaultValue
vtkVariant GetDefaultValue()
vtkTypeMacro
#define vtkTypeMacro(thisClass, superclass)
Definition: vtkSetGet.h:642
vtkTransferAttributes::SourceArrayName
char * SourceArrayName
Definition: vtkTransferAttributes.h:106
vtkTransferAttributes::PrintSelf
void PrintSelf(ostream &os, vtkIndent indent)
vtkTransferAttributes::TargetArrayName
char * TargetArrayName
Definition: vtkTransferAttributes.h:107
vtkTransferAttributes::FillInputPortInformation
int FillInputPortInformation(int port, vtkInformation *info)
vtkX3D::port
@ port
Definition: vtkX3D.h:447
vtkTransferAttributes::TargetFieldType
int TargetFieldType
Definition: vtkTransferAttributes.h:109
vtkgl::value
GLsizei const GLfloat * value
Definition: vtkgl.h:12021
vtkIndent
a simple class to control print indentation
Definition: vtkIndent.h:39
vtkSetStringMacro
#define vtkSetStringMacro(name)
Definition: vtkSetGet.h:104
vtkVariant
A atomic type representing the union of many types.
Definition: vtkVariant.h:79
vtkGetMacro
#define vtkGetMacro(name, type)
Definition: vtkSetGet.h:93
vtkGetStringMacro
vtkGetStringMacro(ExtensionsString)
vtkInfovisCoreModule.h
vtkTransferAttributes
transfer data from a graph representation to a tree representation using direct mapping or pedigree i...
Definition: vtkTransferAttributes.h:45
vtkBooleanMacro
vtkBooleanMacro(IgnoreDriverBugs, bool)
vtkInformation
Store vtkAlgorithm input/output information.
Definition: vtkInformation.h:86
vtkSetMacro
vtkSetMacro(IgnoreDriverBugs, bool)
vtkX3D::info
@ info
Definition: vtkX3D.h:376
vtkTransferAttributes::DirectMapping
bool DirectMapping
Definition: vtkTransferAttributes.h:105
vtkTransferAttributes::~vtkTransferAttributes
~vtkTransferAttributes()
vtkTransferAttributes::vtkTransferAttributes
vtkTransferAttributes()
vtkTransferAttributes::SourceFieldType
int SourceFieldType
Definition: vtkTransferAttributes.h:108
vtkTransferAttributes::DefaultValue
vtkVariant DefaultValue
Definition: vtkTransferAttributes.h:111
vtkTransferAttributes::New
static vtkTransferAttributes * New()
vtkPassInputTypeAlgorithm
Superclass for algorithms that produce output of the same type as input.
Definition: vtkPassInputTypeAlgorithm.h:50