1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31
|
/*=========================================================================
Program: Insight Segmentation & Registration Toolkit
Module: $RCSfile: itk_zlib.h,v $
Language: C++
Date: $Date: 2006-09-28 13:11:06 $
Version: $Revision: 1.1 $
Copyright (c) Insight Software Consortium. All rights reserved.
See ITKCopyright.txt or http://www.itk.org/HTML/Copyright.htm for details.
Portions of this code are covered under the VTK copyright.
See VTKCopyright.txt or http://www.kitware.com/VTKCopyright.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 notices for more information.
=========================================================================*/
#ifndef __itk_zlib_h
#define __itk_zlib_h
/* Use the zlib library configured for ITK. */
#include "itkThirdParty.h"
#ifdef ITK_USE_SYSTEM_ZLIB
# include <zlib.h>
#else
# include <itkzlib/zlib.h>
#endif
#endif
|