VTK
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 
44 #ifndef vtkArrayExtentsList_h
45 #define vtkArrayExtentsList_h
46 
47 #include "vtkCommonCoreModule.h" // For export macro
48 #include "vtkArrayExtents.h"
49 #include <vector> // STL Header
50 
51 class VTKCOMMONCORE_EXPORT vtkArrayExtentsList
52 {
53 public:
58 
63 
68 
73 
78 
82  vtkIdType GetCount() const;
83 
89  void SetCount(vtkIdType count);
90 
91 
95  vtkArrayExtents& operator[](vtkIdType i);
96 
100  const vtkArrayExtents& operator[](vtkIdType i) const;
101 
102 private:
103 
104  std::vector<vtkArrayExtents> Storage;
105 
106 };
107 
108 #endif
109 
110 // VTK-HeaderTest-Exclude: vtkArrayExtentsList.h
Stores the number of dimensions and valid coordinate ranges along each dimension for vtkArray...
int vtkIdType
Definition: vtkType.h:345
Stores a collection of vtkArrayExtents objects.