VTK
Main Page
Related Pages
Modules
Namespaces
Classes
Files
File List
File Members
home
demarle
Source
VTK
release
8.2
build
Utilities
Doxygen
dox
Common
Core
vtkArrayExtentsList.h
Go to the documentation of this file.
1
/*=========================================================================
2
3
Program: Visualization Toolkit
4
Module: vtkArrayExtentsList.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
47
#ifndef vtkArrayExtentsList_h
48
#define vtkArrayExtentsList_h
49
50
#include "vtkCommonCoreModule.h"
// For export macro
51
#include "
vtkArrayExtents.h
"
52
#include <vector>
// STL Header
53
54
class
VTKCOMMONCORE_EXPORT
vtkArrayExtentsList
55
{
56
public
:
60
vtkArrayExtentsList
();
61
65
vtkArrayExtentsList
(
const
vtkArrayExtents
& i);
66
70
vtkArrayExtentsList
(
const
vtkArrayExtents
& i,
const
vtkArrayExtents
& j);
71
75
vtkArrayExtentsList
(
const
vtkArrayExtents
& i,
const
vtkArrayExtents
& j,
const
vtkArrayExtents
& k);
76
80
vtkArrayExtentsList
(
const
vtkArrayExtents
& i,
const
vtkArrayExtents
& j,
const
vtkArrayExtents
& k,
const
vtkArrayExtents
& l);
81
85
vtkIdType
GetCount()
const
;
86
92
void
SetCount(
vtkIdType
count);
93
94
98
vtkArrayExtents
& operator[](
vtkIdType
i);
99
103
const
vtkArrayExtents
& operator[](
vtkIdType
i)
const
;
104
105
private
:
106
107
std::vector<vtkArrayExtents> Storage;
108
109
};
110
111
#endif
112
113
// VTK-HeaderTest-Exclude: vtkArrayExtentsList.h
vtkArrayExtents
Stores the number of dimensions and valid coordinate ranges along each dimension for vtkArray...
Definition:
vtkArrayExtents.h:74
vtkIdType
int vtkIdType
Definition:
vtkType.h:347
vtkArrayExtents.h
vtkArrayExtentsList
Stores a collection of vtkArrayExtents objects.
Definition:
vtkArrayExtentsList.h:54
Generated by
1.8.11