]> git.lyx.org Git - lyx.git/blob - boost/boost/regex/src.cpp
complie fix
[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.  Before including this file you
23   *                must define BOOST_REGEX_NO_LIB, or include this file
24   *                before any other regex header.
25   */
26
27 #if !defined(BOOST_REGEX_NO_LIB) && defined(BOOST_REGEX_CONFIG_HPP)
28 #error too late you have already included a regex header - try defining BOOST_REGEX_NO_LIB when you build
29 #endif
30
31 //
32 // include library source files:
33 //
34 #ifdef BOOST_REGEX_USE_WIN32_LOCALE
35 #include "libs/regex/src/w32_regex_traits.cpp"
36 #elif defined(BOOST_REGEX_USE_C_LOCALE)
37 #include "libs/regex/src/c_regex_traits.cpp"
38 #else
39 #include "libs/regex/src/cpp_regex_traits.cpp"
40 #endif
41 #include "libs/regex/src/c_regex_traits_common.cpp"
42 #include "libs/regex/src/cregex.cpp"
43 #include "libs/regex/src/fileiter.cpp"
44 #include "libs/regex/src/posix_api.cpp"
45 #include "libs/regex/src/wide_posix_api.cpp"
46 #include "libs/regex/src/regex.cpp"
47 #include "libs/regex/src/regex_debug.cpp"
48 #include "libs/regex/src/regex_synch.cpp"
49