2003-05-12 21:15:49 +04:00
|
|
|
/*=========================================================================
|
|
|
|
|
|
|
|
Program: KWSys - Kitware System Library
|
|
|
|
Module: $RCSfile$
|
|
|
|
|
2003-12-16 00:30:46 +03:00
|
|
|
Copyright (c) Kitware, Inc., Insight Consortium. All rights reserved.
|
|
|
|
See Copyright.txt or http://www.kitware.com/Copyright.htm for details.
|
2003-05-12 21:15:49 +04:00
|
|
|
|
2003-12-16 00:30:46 +03:00
|
|
|
This software is distributed WITHOUT ANY WARRANTY; without even
|
|
|
|
the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
|
2003-05-12 21:15:49 +04:00
|
|
|
PURPOSE. See the above copyright notices for more information.
|
|
|
|
|
|
|
|
=========================================================================*/
|
2003-04-08 21:10:44 +04:00
|
|
|
#ifndef @KWSYS_NAMESPACE@_Configure_hxx
|
|
|
|
#define @KWSYS_NAMESPACE@_Configure_hxx
|
|
|
|
|
2003-12-23 19:03:33 +03:00
|
|
|
/* Whether kwsys namespace is "kwsys". */
|
|
|
|
#define @KWSYS_NAMESPACE@_NAME_IS_KWSYS @KWSYS_NAME_IS_KWSYS@
|
2003-06-20 02:57:11 +04:00
|
|
|
|
2003-12-23 19:03:33 +03:00
|
|
|
/* Whether ANSI C++ stream headers are to be used. */
|
2003-12-31 01:15:51 +03:00
|
|
|
#define @KWSYS_NAMESPACE@_IOS_USE_ANSI @KWSYS_IOS_USE_ANSI@
|
2003-06-20 02:57:11 +04:00
|
|
|
|
2003-12-23 19:03:33 +03:00
|
|
|
/* Whether ANSI C++ streams are in std namespace. */
|
|
|
|
#define @KWSYS_NAMESPACE@_IOS_HAVE_STD @KWSYS_IOS_HAVE_STD@
|
2003-04-08 21:10:44 +04:00
|
|
|
|
2003-12-23 19:03:33 +03:00
|
|
|
/* Whether ANSI C++ <sstream> header is to be used. */
|
2003-12-31 01:15:51 +03:00
|
|
|
#define @KWSYS_NAMESPACE@_IOS_USE_SSTREAM @KWSYS_IOS_USE_SSTREAM@
|
2003-12-23 19:03:33 +03:00
|
|
|
|
|
|
|
/* Whether old C++ <strstream.h> header is to be used. */
|
2003-12-31 01:15:51 +03:00
|
|
|
#define @KWSYS_NAMESPACE@_IOS_USE_STRSTREAM_H @KWSYS_IOS_USE_STRSTREAM_H@
|
2003-12-23 19:03:33 +03:00
|
|
|
|
|
|
|
/* Whether old C++ <strstrea.h> header is to be used. */
|
2003-12-31 01:15:51 +03:00
|
|
|
#define @KWSYS_NAMESPACE@_IOS_USE_STRSTREA_H @KWSYS_IOS_USE_STRSTREA_H@
|
2003-12-23 19:03:33 +03:00
|
|
|
|
|
|
|
/* Whether STL is in std namespace. */
|
|
|
|
#define @KWSYS_NAMESPACE@_STL_HAVE_STD @KWSYS_STL_HAVE_STD@
|
2003-06-20 02:57:11 +04:00
|
|
|
|
2003-12-23 19:03:33 +03:00
|
|
|
/* Define the stl namespace macro. */
|
|
|
|
#if @KWSYS_NAMESPACE@_STL_HAVE_STD
|
|
|
|
# define @KWSYS_NAMESPACE@_stl std
|
|
|
|
#else
|
|
|
|
# define @KWSYS_NAMESPACE@_stl
|
2003-05-12 21:43:03 +04:00
|
|
|
#endif
|
|
|
|
|
2003-12-23 19:03:33 +03:00
|
|
|
/* Define the ios namespace macro. */
|
|
|
|
#if @KWSYS_NAMESPACE@_IOS_HAVE_STD
|
|
|
|
# define @KWSYS_NAMESPACE@_ios_namespace std
|
|
|
|
#else
|
|
|
|
# define @KWSYS_NAMESPACE@_ios_namespace
|
|
|
|
#endif
|
2003-12-31 01:15:51 +03:00
|
|
|
#if @KWSYS_NAMESPACE@_IOS_USE_SSTREAM
|
2003-12-23 19:03:33 +03:00
|
|
|
# define @KWSYS_NAMESPACE@_ios @KWSYS_NAMESPACE@_ios_namespace
|
2003-05-08 22:46:23 +04:00
|
|
|
#else
|
2003-12-23 19:03:33 +03:00
|
|
|
# define @KWSYS_NAMESPACE@_ios @KWSYS_NAMESPACE@_ios
|
2003-06-20 02:57:11 +04:00
|
|
|
#endif
|
|
|
|
|
|
|
|
/* If building a C++ file in kwsys itself, give the source file
|
|
|
|
access to the macros without a configured namespace. */
|
|
|
|
#if defined(KWSYS_NAMESPACE)
|
2003-12-23 19:03:33 +03:00
|
|
|
# if !@KWSYS_NAMESPACE@_NAME_IS_KWSYS
|
|
|
|
# define kwsys_stl @KWSYS_NAMESPACE@_stl
|
|
|
|
# define kwsys_ios @KWSYS_NAMESPACE@_ios
|
2003-06-20 02:57:11 +04:00
|
|
|
# endif
|
2003-12-31 01:15:51 +03:00
|
|
|
# define KWSYS_NAME_IS_KWSYS @KWSYS_NAMESPACE@_NAME_IS_KWSYS
|
|
|
|
# define KWSYS_STL_HAVE_STD @KWSYS_NAMESPACE@_STL_HAVE_STD
|
|
|
|
# define KWSYS_IOS_HAVE_STD @KWSYS_NAMESPACE@_IOS_HAVE_STD
|
|
|
|
# define KWSYS_IOS_USE_ANSI @KWSYS_NAMESPACE@_IOS_USE_ANSI
|
|
|
|
# define KWSYS_IOS_USE_SSTREAM @KWSYS_NAMESPACE@_IOS_USE_SSTREAM
|
|
|
|
# define KWSYS_IOS_USE_STRSTREAM_H @KWSYS_NAMESPACE@_IOS_USE_STRSTREAM_H
|
|
|
|
# define KWSYS_IOS_USE_STRSTREA_H @KWSYS_NAMESPACE@_IOS_USE_STRSTREA_H
|
2003-05-08 22:46:23 +04:00
|
|
|
#endif
|
|
|
|
|
2003-04-08 21:10:44 +04:00
|
|
|
#endif
|