sl@0
|
1 |
///////////////////////////////////////////////////////////////////////////////
|
sl@0
|
2 |
/// \file xpressive_dynamic.hpp
|
sl@0
|
3 |
/// Includes everything you need to write and use dynamic regular expressions.
|
sl@0
|
4 |
//
|
sl@0
|
5 |
// Copyright 2004 Eric Niebler. Distributed under the Boost
|
sl@0
|
6 |
// Software License, Version 1.0. (See accompanying file
|
sl@0
|
7 |
// LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
|
sl@0
|
8 |
|
sl@0
|
9 |
#ifndef BOOST_XPRESSIVE_DYNAMIC_HPP_EAN_10_04_2005
|
sl@0
|
10 |
#define BOOST_XPRESSIVE_DYNAMIC_HPP_EAN_10_04_2005
|
sl@0
|
11 |
|
sl@0
|
12 |
// MS compatible compilers support #pragma once
|
sl@0
|
13 |
#if defined(_MSC_VER) && (_MSC_VER >= 1020)
|
sl@0
|
14 |
# pragma once
|
sl@0
|
15 |
#endif
|
sl@0
|
16 |
|
sl@0
|
17 |
#include <boost/xpressive/regex_compiler.hpp>
|
sl@0
|
18 |
#include <boost/xpressive/basic_regex.hpp>
|
sl@0
|
19 |
#include <boost/xpressive/sub_match.hpp>
|
sl@0
|
20 |
#include <boost/xpressive/match_results.hpp>
|
sl@0
|
21 |
#include <boost/xpressive/regex_algorithms.hpp>
|
sl@0
|
22 |
#include <boost/xpressive/regex_iterator.hpp>
|
sl@0
|
23 |
#include <boost/xpressive/regex_token_iterator.hpp>
|
sl@0
|
24 |
|
sl@0
|
25 |
#endif
|