]> git.lyx.org Git - lyx.git/blob - boost/boost/regex/src.cpp
update boost to pre-1.30.0
[lyx.git] / boost / boost / regex / src.cpp
1 /*
2  *
3  * Copyright (c) 1998-2002
4  * Dr John Maddock
5  *
6  * Permission to use, copy, modify, distribute and sell this software
7  * and its documentation for any purpose is hereby granted without fee,
8  * provided that the above copyright notice appear in all copies and
9  * that both that copyright notice and this permission notice appear
10  * in supporting documentation.  Dr John Maddock makes no representations
11  * about the suitability of this software for any purpose.  
12  * It is provided "as is" without express or implied warranty.
13  *
14  */
15  
16  /*
17   *   LOCATION:    see http://www.boost.org for most recent version.
18   *   FILE         src.cpp
19   *   VERSION      see <boost/version.hpp>
20   *   DESCRIPTION: Includes all the regex source files, include this
21   *                file only if you need to build the regex library
22   *                as a single file.  You must include this file
23   *                before any other regex header.
24   *
25   *                CAUTION: THIS FILE IS DEPRICATED AND WILL CAUSE 
26   *                UNNECESSARY CODE BLOAT.
27   */
28
29 #if (!defined(BOOST_REGEX_NO_LIB) || !defined(BOOST_REGEX_NO_EXTERNAL_TEMPLATES)) && defined(BOOST_REGEX_CONFIG_HPP)
30 #error too late you have already included a regex header - make sure that you include this header before any other boost header
31 #endif
32
33 #define BOOST_REGEX_NO_LIB
34 #define BOOST_REGEX_STATIC_LINK
35 #define BOOST_REGEX_NO_EXTERNAL_TEMPLATES
36
37 #include <boost/regex.hpp>
38
39 //
40 // include library source files:
41 //
42 #ifdef BOOST_REGEX_USE_WIN32_LOCALE
43 #include "libs/regex/src/w32_regex_traits.cpp"
44 #elif defined(BOOST_REGEX_USE_C_LOCALE)
45 #include "libs/regex/src/c_regex_traits.cpp"
46 #else
47 #include "libs/regex/src/cpp_regex_traits.cpp"
48 #endif
49 #include "libs/regex/src/c_regex_traits_common.cpp"
50 #include "libs/regex/src/cregex.cpp"
51 #include "libs/regex/src/fileiter.cpp"
52 #include "libs/regex/src/posix_api.cpp"
53 #include "libs/regex/src/wide_posix_api.cpp"
54 #include "libs/regex/src/regex.cpp"
55 #include "libs/regex/src/regex_debug.cpp"
56 #include "libs/regex/src/regex_synch.cpp"
57
58