os/ossrv/ossrv_pub/boost_apis/boost/xpressive/xpressive_dynamic.hpp
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
     1 ///////////////////////////////////////////////////////////////////////////////
     2 /// \file xpressive_dynamic.hpp
     3 /// Includes everything you need to write and use dynamic regular expressions.
     4 //
     5 //  Copyright 2004 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) && (_MSC_VER >= 1020)
    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