sl@0
|
1 |
///////////////////////////////////////////////////////////////////////////////
|
sl@0
|
2 |
/// \file xpressive_static.hpp
|
sl@0
|
3 |
/// Includes everything you need to write static regular expressions and use
|
sl@0
|
4 |
/// them.
|
sl@0
|
5 |
//
|
sl@0
|
6 |
// Copyright 2004 Eric Niebler. Distributed under the Boost
|
sl@0
|
7 |
// Software License, Version 1.0. (See accompanying file
|
sl@0
|
8 |
// LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
|
sl@0
|
9 |
|
sl@0
|
10 |
#ifndef BOOST_XPRESSIVE_STATIC_HPP_EAN_10_04_2005
|
sl@0
|
11 |
#define BOOST_XPRESSIVE_STATIC_HPP_EAN_10_04_2005
|
sl@0
|
12 |
|
sl@0
|
13 |
// MS compatible compilers support #pragma once
|
sl@0
|
14 |
#if defined(_MSC_VER) && (_MSC_VER >= 1020)
|
sl@0
|
15 |
# pragma once
|
sl@0
|
16 |
#endif
|
sl@0
|
17 |
|
sl@0
|
18 |
#ifdef _MSC_VER
|
sl@0
|
19 |
// inline aggressively
|
sl@0
|
20 |
# pragma inline_recursion(on) // turn on inline recursion
|
sl@0
|
21 |
# pragma inline_depth(255) // max inline depth
|
sl@0
|
22 |
#endif
|
sl@0
|
23 |
|
sl@0
|
24 |
#include <boost/xpressive/regex_primitives.hpp>
|
sl@0
|
25 |
#include <boost/xpressive/basic_regex.hpp>
|
sl@0
|
26 |
#include <boost/xpressive/sub_match.hpp>
|
sl@0
|
27 |
#include <boost/xpressive/match_results.hpp>
|
sl@0
|
28 |
#include <boost/xpressive/regex_algorithms.hpp>
|
sl@0
|
29 |
#include <boost/xpressive/regex_iterator.hpp>
|
sl@0
|
30 |
#include <boost/xpressive/regex_token_iterator.hpp>
|
sl@0
|
31 |
|
sl@0
|
32 |
#endif
|