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