1 /*=========================================================================
2 
3   Program:   Visualization Toolkit
4   Module:    vtkStructuredExtent.cxx
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 #include "vtkStructuredExtent.h"
16 
17 #include "vtkObjectFactory.h"
18 
19 vtkStandardNewMacro(vtkStructuredExtent);
20 //----------------------------------------------------------------------------
vtkStructuredExtent()21 vtkStructuredExtent::vtkStructuredExtent()
22 {
23 }
24 
25 //----------------------------------------------------------------------------
~vtkStructuredExtent()26 vtkStructuredExtent::~vtkStructuredExtent()
27 {
28 }
29 
30 //----------------------------------------------------------------------------
PrintSelf(ostream & os,vtkIndent indent)31 void vtkStructuredExtent::PrintSelf(ostream& os, vtkIndent indent)
32 {
33   this->Superclass::PrintSelf(os, indent);
34 }
35