You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
40 lines
1.7 KiB
40 lines
1.7 KiB
/*=========================================================================
|
|
|
|
Program: Visualization Toolkit
|
|
Module: $RCSfile: vtkImageIterator.cxx,v $
|
|
|
|
Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen
|
|
All rights reserved.
|
|
See Copyright.txt or http://www.kitware.com/Copyright.htm for details.
|
|
|
|
This software is distributed WITHOUT ANY WARRANTY; without even
|
|
the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
|
|
PURPOSE. See the above copyright notice for more information.
|
|
|
|
=========================================================================*/
|
|
|
|
#include "vtkImageIterator.txx"
|
|
|
|
#ifndef VTK_NO_EXPLICIT_TEMPLATE_INSTANTIATION
|
|
|
|
template class VTK_FILTERING_EXPORT vtkImageIterator<signed char>;
|
|
template class VTK_FILTERING_EXPORT vtkImageIterator<char>;
|
|
template class VTK_FILTERING_EXPORT vtkImageIterator<int>;
|
|
template class VTK_FILTERING_EXPORT vtkImageIterator<long>;
|
|
template class VTK_FILTERING_EXPORT vtkImageIterator<short>;
|
|
template class VTK_FILTERING_EXPORT vtkImageIterator<float>;
|
|
template class VTK_FILTERING_EXPORT vtkImageIterator<double>;
|
|
template class VTK_FILTERING_EXPORT vtkImageIterator<unsigned long>;
|
|
template class VTK_FILTERING_EXPORT vtkImageIterator<unsigned short>;
|
|
template class VTK_FILTERING_EXPORT vtkImageIterator<unsigned char>;
|
|
template class VTK_FILTERING_EXPORT vtkImageIterator<unsigned int>;
|
|
#if defined(VTK_TYPE_USE_LONG_LONG)
|
|
template class VTK_FILTERING_EXPORT vtkImageIterator<long long>;
|
|
template class VTK_FILTERING_EXPORT vtkImageIterator<unsigned long long>;
|
|
#endif
|
|
#if defined(VTK_TYPE_USE___INT64)
|
|
template class VTK_FILTERING_EXPORT vtkImageIterator<__int64>;
|
|
template class VTK_FILTERING_EXPORT vtkImageIterator<unsigned __int64>;
|
|
#endif
|
|
|
|
#endif
|
|
|