/*=========================================================================

  Program:   KWSys - Kitware System Library
  Module:    $RCSfile$

  Copyright (c) Kitware, Inc., Insight Consortium.  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 notices for more information.

=========================================================================*/
#ifndef cmsys_ios_fstream
#define cmsys_ios_fstream

#include <cmsys/Configure.hxx>

#ifdef _MSC_VER
# pragma warning (push, 1)
# pragma warning (disable: 4702)
# pragma warning (disable: 4995) /* Old streams are deprecated.  */
#endif

#if cmsys_IOS_USE_ANSI
# include <fstream>
#else
# include <fstream.h>
#endif

#if !cmsys_IOS_USE_SSTREAM
namespace cmsys_ios
{
  using cmsys_ios_namespace::ostream;
  using cmsys_ios_namespace::istream;
  using cmsys_ios_namespace::ofstream;
  using cmsys_ios_namespace::ifstream;
  using cmsys_ios_namespace::ios;
  using cmsys_ios_namespace::endl;
  using cmsys_ios_namespace::flush;
}
#endif

#ifdef _MSC_VER
# pragma warning(pop)
#endif

#endif
