VTK
vtkArrayPrint.h
Go to the documentation of this file.
1 /*=========================================================================
2 
3  Program: Visualization Toolkit
4  Module: vtkArrayPrint.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 =========================================================================*/
29 #ifndef vtkArrayPrint_h
30 #define vtkArrayPrint_h
31 
32 #include "vtkTypedArray.h"
33 
38 template<typename T>
39 void vtkPrintCoordinateFormat(ostream& stream, vtkTypedArray<T>* array);
40 
43 template<typename T>
44 void vtkPrintMatrixFormat(ostream& stream, vtkTypedArray<T>* matrix);
45 
48 template<typename T>
49 void vtkPrintVectorFormat(ostream& stream, vtkTypedArray<T>* vector);
50 
51 #include "vtkArrayPrint.txx"
52 
53 #endif
54 // VTK-HeaderTest-Exclude: vtkArrayPrint.h
void vtkPrintCoordinateFormat(ostream &stream, vtkTypedArray< T > *array)
Provides a type-specific interface to N-way arrays.
Definition: vtkTypedArray.h:58
void vtkPrintMatrixFormat(ostream &stream, vtkTypedArray< T > *matrix)
void vtkPrintVectorFormat(ostream &stream, vtkTypedArray< T > *vector)