Configure.hxx.in 1.0 KB

1234567891011121314151617181920212223242526272829303132
  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@_Configure_hxx
  14. #define @KWSYS_NAMESPACE@_Configure_hxx
  15. /* This configuration should match for all instances of kwsys. */
  16. #cmakedefine KWSYS_NO_STD_NAMESPACE
  17. #cmakedefine KWSYS_NO_ANSI_STREAM_HEADERS
  18. #cmakedefine KWSYS_NO_ANSI_STRING_STREAM
  19. #cmakedefine KWSYS_NO_ANSI_FOR_SCOPE
  20. #if defined(KWSYS_NO_STD_NAMESPACE)
  21. # define kwsys_std
  22. #else
  23. # define kwsys_std std
  24. #endif
  25. #endif