Last change
on this file since 35 was
29,
checked in by landauf, 16 years ago
|
updated boost from 1_33_1 to 1_34_1
|
File size:
1.1 KB
|
Line | |
---|
1 | /////////////////////////////////////////////////////////////////////////////// |
---|
2 | /// \file xpressive_static.hpp |
---|
3 | /// Includes everything you need to write static regular expressions and use |
---|
4 | /// them. |
---|
5 | // |
---|
6 | // Copyright 2004 Eric Niebler. Distributed under the Boost |
---|
7 | // Software License, Version 1.0. (See accompanying file |
---|
8 | // LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) |
---|
9 | |
---|
10 | #ifndef BOOST_XPRESSIVE_STATIC_HPP_EAN_10_04_2005 |
---|
11 | #define BOOST_XPRESSIVE_STATIC_HPP_EAN_10_04_2005 |
---|
12 | |
---|
13 | // MS compatible compilers support #pragma once |
---|
14 | #if defined(_MSC_VER) && (_MSC_VER >= 1020) |
---|
15 | # pragma once |
---|
16 | #endif |
---|
17 | |
---|
18 | #ifdef _MSC_VER |
---|
19 | // inline aggressively |
---|
20 | # pragma inline_recursion(on) // turn on inline recursion |
---|
21 | # pragma inline_depth(255) // max inline depth |
---|
22 | #endif |
---|
23 | |
---|
24 | #include <boost/xpressive/regex_primitives.hpp> |
---|
25 | #include <boost/xpressive/basic_regex.hpp> |
---|
26 | #include <boost/xpressive/sub_match.hpp> |
---|
27 | #include <boost/xpressive/match_results.hpp> |
---|
28 | #include <boost/xpressive/regex_algorithms.hpp> |
---|
29 | #include <boost/xpressive/regex_iterator.hpp> |
---|
30 | #include <boost/xpressive/regex_token_iterator.hpp> |
---|
31 | |
---|
32 | #endif |
---|
Note: See
TracBrowser
for help on using the repository browser.