StandardIncludes.hxx.in 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. /*=========================================================================
  2. Program: KWSys - Kitware System Library
  3. Module: $RCSfile$
  4. Language: C++
  5. Date: $Date$
  6. Version: $Revision$
  7. Copyright (c) 2002 Kitware, Inc., Insight Consortium. All rights reserved.
  8. See http://www.cmake.org/HTML/Copyright.html for details.
  9. This software is distributed WITHOUT ANY WARRANTY; without even
  10. the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
  11. PURPOSE. See the above copyright notices for more information.
  12. =========================================================================*/
  13. #ifndef @KWSYS_NAMESPACE@_StandardIncludes_hxx
  14. #define @KWSYS_NAMESPACE@_StandardIncludes_hxx
  15. #include <@KWSYS_NAMESPACE@/Configure.hxx>
  16. #ifndef KWSYS_NO_ANSI_STREAM_HEADERS
  17. # include <fstream>
  18. # include <iostream>
  19. #else
  20. # include <fstream.h>
  21. # include <iostream.h>
  22. #endif
  23. #if !defined(KWSYS_NO_ANSI_STRING_STREAM)
  24. # include <sstream>
  25. #elif !defined(KWSYS_NO_ANSI_STREAM_HEADERS)
  26. # include <strstream>
  27. #else
  28. # include <strstream.h>
  29. #endif
  30. #if defined(KWSYS_NO_STD_NAMESPACE)
  31. # define kwsys_std
  32. #else
  33. # define kwsys_std std
  34. #endif
  35. #endif