VTK
Main Page
Related Pages
Namespaces
Classes
Files
File List
File Members
dox
Common
vtkInformationStringVectorKey.h
Go to the documentation of this file.
1
/*=========================================================================
2
3
Program: Visualization Toolkit
4
Module: vtkInformationStringVectorKey.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
=========================================================================*/
22
#ifndef __vtkInformationStringVectorKey_h
23
#define __vtkInformationStringVectorKey_h
24
25
#include "
vtkInformationKey.h
"
26
27
#include "
vtkCommonInformationKeyManager.h
"
// Manage instances of this type.
28
29
class
VTK_COMMON_EXPORT
vtkInformationStringVectorKey
:
public
vtkInformationKey
30
{
31
public
:
32
vtkTypeMacro(
vtkInformationStringVectorKey
,
vtkInformationKey
);
33
void
PrintSelf
(ostream& os,
vtkIndent
indent);
34
35
vtkInformationStringVectorKey
(
const
char
*
name
,
const
char
*
location
,
36
int
length
=-1);
37
~
vtkInformationStringVectorKey
();
38
40
42
void
Append(
vtkInformation
*
info
,
const
char
*
value
);
43
void
Set(
vtkInformation
*
info
,
const
char
*
value
,
int
idx = 0);
44
const
char
* Get(
vtkInformation
*
info
,
int
idx = 0);
45
int
Length(
vtkInformation
*
info
);
47
51
virtual
void
ShallowCopy
(
vtkInformation
* from,
vtkInformation
* to);
52
54
virtual
void
Print
(ostream& os,
vtkInformation
*
info
);
55
56
protected
:
57
// The required length of the vector value (-1 is no restriction).
58
int
RequiredLength
;
59
60
private
:
61
vtkInformationStringVectorKey
(
const
vtkInformationStringVectorKey
&);
// Not implemented.
62
void
operator=(
const
vtkInformationStringVectorKey
&);
// Not implemented.
63
};
64
65
#endif
Generated on Fri Aug 2 2013 12:19:46 for VTK by
1.8.4