initial revision

[SVN r15203]
This commit is contained in:
Paul Mensonides
2002-09-08 10:22:48 +00:00
parent 54d6f56c0e
commit 5c1b446a9e
145 changed files with 28111 additions and 0 deletions

View File

@ -0,0 +1,89 @@
# /* **************************************************************************
# * *
# * (C) Copyright Paul Mensonides 2002. Permission to copy, use, *
# * modify, sell, and distribute this software is granted provided *
# * this copyright notice appears in all copies. This software is *
# * provided "as is" without express or implied warranty, and with *
# * no claim at to its suitability for any purpose. *
# * *
# ************************************************************************** */
#
# /* See http://www.boost.org for most recent version. */
#
# ifndef BOOST_PREPROCESSOR_CONFIG_CONFIG_HPP
# define BOOST_PREPROCESSOR_CONFIG_CONFIG_HPP
#
# /* BOOST_PP_CONFIG_FLAGS */
#
# define BOOST_PP_CONFIG_STRICT 0x0001
# define BOOST_PP_CONFIG_IDEAL 0x0002
#
# define BOOST_PP_CONFIG_MSVC 0x0004
# define BOOST_PP_CONFIG_MWCW 0x0008
# define BOOST_PP_CONFIG_EDG 0x0010
#
# ifndef BOOST_PP_CONFIG_FLAGS
# if defined(__EDG__)
# define BOOST_PP_CONFIG_FLAGS (BOOST_PP_CONFIG_EDG | BOOST_PP_CONFIG_STRICT)
# elif defined(_MSC_VER)
# define BOOST_PP_CONFIG_FLAGS (BOOST_PP_CONFIG_MSVC)
# elif defined(__MWERKS__)
# define BOOST_PP_CONFIG_FLAGS (BOOST_PP_CONFIG_MWCW)
# else
# define BOOST_PP_CONFIG_FLAGS (BOOST_PP_CONFIG_STRICT | BOOST_PP_CONFIG_IDEAL)
# endif
# endif
#
# /* BOOST_PP_CONFIG_VARIADIC */
#
# if __STDC_VERSION__ >= 199901L && !defined(__cplusplus)
# define BOOST_PP_CONFIG_VARIADIC_DEF 1
# else
# define BOOST_PP_CONFIG_VARIADIC_DEF 0
# endif
#
# ifndef BOOST_PP_CONFIG_VARIADIC
# define BOOST_PP_CONFIG_VARIADIC BOOST_PP_CONFIG_VARIADIC_DEF
# endif
#
# /* BOOST_PP_CONFIG_UNROLLED */
#
# define BOOST_PP_CONFIG_UNROLLED_DEF 0
#
# ifndef BOOST_PP_CONFIG_UNROLLED
# define BOOST_PP_CONFIG_UNROLLED BOOST_PP_CONFIG_UNROLLED_DEF
# endif
#
# /* BOOST_PP_CONFIG_WARNINGS */
#
# ifndef NDEBUG
# define BOOST_PP_CONFIG_WARNINGS_DEF 1
# else
# define BOOST_PP_CONFIG_WARNINGS_DEF 0
# endif
#
# ifndef BOOST_PP_CONFIG_WARNINGS
# define BOOST_PP_CONFIG_WARNINGS BOOST_PP_CONFIG_WARNINGS_DEF
# endif
#
# /* BOOST_PP_CONFIG_ERRORS */
#
# ifndef NDEBUG
# define BOOST_PP_CONFIG_ERRORS_DEF 1
# else
# define BOOST_PP_CONFIG_ERRORS_DEF 0
# endif
#
# ifndef BOOST_PP_CONFIG_ERRORS
# define BOOST_PP_CONFIG_ERRORS BOOST_PP_CONFIG_ERRORS_DEF
# endif
#
# /* BOOST_PP_CONFIG_EXTENDED_LINE_INFO */
#
# define BOOST_PP_CONFIG_EXTENDED_LINE_INFO_DEF 0
#
# ifndef BOOST_PP_CONFIG_EXTENDED_LINE_INFO
# define BOOST_PP_CONFIG_EXTENDED_LINE_INFO BOOST_PP_CONFIG_EXTENDED_LINE_INFO_DEF
# endif
#
# endif

View File

@ -0,0 +1,76 @@
# /* Copyright (C) 2001
# * Housemarque Oy
# * http://www.housemarque.com
# *
# * Permission to copy, use, modify, sell and distribute this software is
# * granted provided this copyright notice appears in all copies. This
# * software is provided "as is" without express or implied warranty, and
# * with no claim as to its suitability for any purpose.
# */
#
# /* Revised by Paul Mensonides (2002) */
#
# /* See http://www.boost.org for most recent version. */
#
# ifndef BOOST_PREPROCESSOR_CONFIG_LIMITS_HPP
# define BOOST_PREPROCESSOR_CONFIG_LIMITS_HPP
#
# include <boost/preprocessor/config/config.hpp>
#
# /* BOOST_PP_LIMIT_MAG */
#
# define BOOST_PP_LIMIT_MAG 256
#
# /* BOOST_PP_LIMIT_TUPLE */
#
# define BOOST_PP_LIMIT_TUPLE 25
#
# /* BOOST_PP_LIMIT_DIM */
#
# define BOOST_PP_LIMIT_DIM 3
#
# /* BOOST_PP_LIMIT_REPEAT */
#
# if BOOST_PP_CONFIG_UNROLLED
# define BOOST_PP_LIMIT_REPEAT 128
# else
# define BOOST_PP_LIMIT_REPEAT 256
# endif
#
# /* BOOST_PP_LIMIT_WHILE */
#
# define BOOST_PP_LIMIT_WHILE 256
#
# /* BOOST_PP_LIMIT_FOR */
#
# define BOOST_PP_LIMIT_FOR 256
#
# /* BOOST_PP_LIMIT_ITERATION */
#
# define BOOST_PP_LIMIT_ITERATION 256
#
# /* BOOST_PP_LIMIT_ITERATION_DIM */
#
# define BOOST_PP_LIMIT_ITERATION_DIM 5
#
# /* BOOST_PP_LIMIT_SLOT_SIG */
#
# define BOOST_PP_LIMIT_SLOT_SIG 10
#
# /* BOOST_PP_LIMIT_SLOT_COUNT */
#
# define BOOST_PP_LIMIT_SLOT_COUNT 5
#
# /* BOOST_PP_INFINITY */
#
# define BOOST_PP_INFINITY (-1)
#
# /* BOOST_PP_LIMIT_BOOL */
#
# if ~BOOST_PP_CONFIG_FLAGS & BOOST_PP_CONFIG_EDG
# define BOOST_PP_LIMIT_BOOL BOOST_PP_INFINITY
# else
# define BOOST_PP_LIMIT_BOOL BOOST_PP_LIMIT_MAG
# endif
#
# endif