Chris@16: /* Chris@16: * Chris@16: * Copyright (c) 1998-2002 Chris@16: * John Maddock Chris@16: * Chris@16: * Use, modification and distribution are subject to the Chris@16: * Boost Software License, Version 1.0. (See accompanying file Chris@16: * LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) Chris@16: * Chris@16: */ Chris@16: Chris@16: /* Chris@16: * LOCATION: see http://www.boost.org for most recent version. Chris@16: * FILE user.hpp Chris@16: * VERSION see Chris@16: * DESCRIPTION: User settable options. Chris@16: */ Chris@16: Chris@16: // define if you want the regex library to use the C locale Chris@16: // even on Win32: Chris@16: // #define BOOST_REGEX_USE_C_LOCALE Chris@16: Chris@16: // define this is you want the regex library to use the C++ Chris@16: // locale: Chris@16: // #define BOOST_REGEX_USE_CPP_LOCALE Chris@16: Chris@16: // define this if the runtime library is a dll, and you Chris@16: // want BOOST_REGEX_DYN_LINK to set up dll exports/imports Chris@16: // with __declspec(dllexport)/__declspec(dllimport.) Chris@16: // #define BOOST_REGEX_HAS_DLL_RUNTIME Chris@16: Chris@16: // define this if you want to dynamically link to regex, Chris@16: // if the runtime library is also a dll (Probably Win32 specific, Chris@16: // and has no effect unless BOOST_REGEX_HAS_DLL_RUNTIME is set): Chris@16: // #define BOOST_REGEX_DYN_LINK Chris@16: Chris@16: // define this if you don't want the lib to automatically Chris@16: // select its link libraries: Chris@16: // #define BOOST_REGEX_NO_LIB Chris@16: Chris@16: // define this if templates with switch statements cause problems: Chris@16: // #define BOOST_REGEX_NO_TEMPLATE_SWITCH_MERGE Chris@16: Chris@16: // define this to disable Win32 support when available: Chris@16: // #define BOOST_REGEX_NO_W32 Chris@16: Chris@16: // define this if bool is not a real type: Chris@16: // #define BOOST_REGEX_NO_BOOL Chris@16: Chris@16: // define this if no template instances are to be placed in Chris@16: // the library rather than users object files: Chris@16: // #define BOOST_REGEX_NO_EXTERNAL_TEMPLATES Chris@16: Chris@16: // define this if the forward declarations in regex_fwd.hpp Chris@16: // cause more problems than they are worth: Chris@16: // #define BOOST_REGEX_NO_FWD Chris@16: Chris@16: // define this if your compiler supports MS Windows structured Chris@16: // exception handling. Chris@16: // #define BOOST_REGEX_HAS_MS_STACK_GUARD Chris@16: Chris@16: // define this if you want to use the recursive algorithm Chris@16: // even if BOOST_REGEX_HAS_MS_STACK_GUARD is not defined. Chris@16: // #define BOOST_REGEX_RECURSIVE Chris@16: Chris@16: // define this if you want to use the non-recursive Chris@16: // algorithm, even if the recursive version would be the default. Chris@16: // #define BOOST_REGEX_NON_RECURSIVE Chris@16: Chris@16: // define this if you want to set the size of the memory blocks Chris@16: // used by the non-recursive algorithm. Chris@16: // #define BOOST_REGEX_BLOCKSIZE 4096 Chris@16: Chris@16: // define this if you want to set the maximum number of memory blocks Chris@16: // used by the non-recursive algorithm. Chris@16: // #define BOOST_REGEX_MAX_BLOCKS 1024 Chris@16: Chris@16: // define this if you want to set the maximum number of memory blocks Chris@16: // cached by the non-recursive algorithm: Normally this is 16, but can be Chris@16: // higher if you have multiple threads all using boost.regex, or lower Chris@16: // if you don't want boost.regex to cache memory. Chris@16: // #define BOOST_REGEX_MAX_CACHE_BLOCKS 16 Chris@16: Chris@16: // define this if you want to be able to access extended capture Chris@16: // information in your sub_match's (caution this will slow things Chris@16: // down quite a bit). Chris@16: // #define BOOST_REGEX_MATCH_EXTRA Chris@16: Chris@16: // define this if you want to enable support for Unicode via ICU. Chris@16: // #define BOOST_HAS_ICU Chris@16: Chris@16: // define this if you want regex to use __cdecl calling convensions, even when __fastcall is available: Chris@16: // #define BOOST_REGEX_NO_FASTCALL