2001-05-11 10:50:06 +00:00
|
|
|
/*
|
|
|
|
*
|
2002-04-24 10:50:23 +00:00
|
|
|
* Copyright (c) 1998-2002
|
2001-05-11 10:50:06 +00:00
|
|
|
* Dr John Maddock
|
|
|
|
*
|
2003-10-04 11:29:20 +00:00
|
|
|
* Use, modification and distribution are subject to the
|
2003-09-30 13:02:51 +00:00
|
|
|
* Boost Software License, Version 1.0. (See accompanying file
|
|
|
|
* LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
|
2001-05-11 10:50:06 +00:00
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
/*
|
|
|
|
* LOCATION: see http://www.boost.org for most recent version.
|
|
|
|
* FILE src.cpp
|
2001-09-30 10:30:14 +00:00
|
|
|
* VERSION see <boost/version.hpp>
|
2001-05-11 10:50:06 +00:00
|
|
|
* DESCRIPTION: Includes all the regex source files, include this
|
|
|
|
* file only if you need to build the regex library
|
2003-02-07 12:16:40 +00:00
|
|
|
* as a single file. You must include this file
|
2001-05-11 10:50:06 +00:00
|
|
|
* before any other regex header.
|
2003-02-07 12:16:40 +00:00
|
|
|
*
|
|
|
|
* CAUTION: THIS FILE IS DEPRICATED AND WILL CAUSE
|
|
|
|
* UNNECESSARY CODE BLOAT.
|
2001-05-11 10:50:06 +00:00
|
|
|
*/
|
|
|
|
|
2003-02-07 12:16:40 +00:00
|
|
|
#if (!defined(BOOST_REGEX_NO_LIB) || !defined(BOOST_REGEX_NO_EXTERNAL_TEMPLATES)) && defined(BOOST_REGEX_CONFIG_HPP)
|
|
|
|
#error too late you have already included a regex header - make sure that you include this header before any other boost header
|
2001-05-11 10:50:06 +00:00
|
|
|
#endif
|
|
|
|
|
2003-02-07 12:16:40 +00:00
|
|
|
#define BOOST_REGEX_NO_LIB
|
|
|
|
#define BOOST_REGEX_STATIC_LINK
|
|
|
|
#define BOOST_REGEX_NO_EXTERNAL_TEMPLATES
|
|
|
|
|
|
|
|
#include <boost/regex.hpp>
|
|
|
|
|
2001-05-11 10:50:06 +00:00
|
|
|
//
|
|
|
|
// include library source files:
|
|
|
|
//
|
2001-09-18 11:13:39 +00:00
|
|
|
#ifdef BOOST_REGEX_USE_WIN32_LOCALE
|
2001-05-11 10:50:06 +00:00
|
|
|
#include "libs/regex/src/w32_regex_traits.cpp"
|
2001-09-18 11:13:39 +00:00
|
|
|
#elif defined(BOOST_REGEX_USE_C_LOCALE)
|
2001-05-11 10:50:06 +00:00
|
|
|
#include "libs/regex/src/c_regex_traits.cpp"
|
|
|
|
#else
|
|
|
|
#include "libs/regex/src/cpp_regex_traits.cpp"
|
|
|
|
#endif
|
|
|
|
#include "libs/regex/src/c_regex_traits_common.cpp"
|
|
|
|
#include "libs/regex/src/cregex.cpp"
|
|
|
|
#include "libs/regex/src/fileiter.cpp"
|
|
|
|
#include "libs/regex/src/posix_api.cpp"
|
|
|
|
#include "libs/regex/src/wide_posix_api.cpp"
|
|
|
|
#include "libs/regex/src/regex.cpp"
|
|
|
|
#include "libs/regex/src/regex_debug.cpp"
|
|
|
|
#include "libs/regex/src/regex_synch.cpp"
|
2002-04-24 10:50:23 +00:00
|
|
|
|
2003-02-07 12:16:40 +00:00
|
|
|
|
2003-09-30 13:02:51 +00:00
|
|
|
|