os/ossrv/ossrv_pub/boost_apis/boost/xpressive/xpressive_dynamic.hpp
changeset 0 bde4ae8d615e
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/os/ossrv/ossrv_pub/boost_apis/boost/xpressive/xpressive_dynamic.hpp	Fri Jun 15 03:10:57 2012 +0200
     1.3 @@ -0,0 +1,25 @@
     1.4 +///////////////////////////////////////////////////////////////////////////////
     1.5 +/// \file xpressive_dynamic.hpp
     1.6 +/// Includes everything you need to write and use dynamic regular expressions.
     1.7 +//
     1.8 +//  Copyright 2004 Eric Niebler. Distributed under the Boost
     1.9 +//  Software License, Version 1.0. (See accompanying file
    1.10 +//  LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
    1.11 +
    1.12 +#ifndef BOOST_XPRESSIVE_DYNAMIC_HPP_EAN_10_04_2005
    1.13 +#define BOOST_XPRESSIVE_DYNAMIC_HPP_EAN_10_04_2005
    1.14 +
    1.15 +// MS compatible compilers support #pragma once
    1.16 +#if defined(_MSC_VER) && (_MSC_VER >= 1020)
    1.17 +# pragma once
    1.18 +#endif
    1.19 +
    1.20 +#include <boost/xpressive/regex_compiler.hpp>
    1.21 +#include <boost/xpressive/basic_regex.hpp>
    1.22 +#include <boost/xpressive/sub_match.hpp>
    1.23 +#include <boost/xpressive/match_results.hpp>
    1.24 +#include <boost/xpressive/regex_algorithms.hpp>
    1.25 +#include <boost/xpressive/regex_iterator.hpp>
    1.26 +#include <boost/xpressive/regex_token_iterator.hpp>
    1.27 +
    1.28 +#endif