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

source code of boost/boost/xpressive/xpressive_dynamic.hpp