fix doc example typo
[boost.git] / boost / xpressive / xpressive_dynamic.hpp
blob6f0e4d0badd0e6973d8c5a79e930782d2301b41a
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)
9 #ifndef BOOST_XPRESSIVE_DYNAMIC_HPP_EAN_10_04_2005
10 #define BOOST_XPRESSIVE_DYNAMIC_HPP_EAN_10_04_2005
12 // MS compatible compilers support #pragma once
13 #if defined(_MSC_VER) && (_MSC_VER >= 1020)
14 # pragma once
15 #endif
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>
25 #endif