1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
1.2 +++ b/os/ossrv/ossrv_pub/boost_apis/boost/xpressive/xpressive_static.hpp Fri Jun 15 03:10:57 2012 +0200
1.3 @@ -0,0 +1,32 @@
1.4 +///////////////////////////////////////////////////////////////////////////////
1.5 +/// \file xpressive_static.hpp
1.6 +/// Includes everything you need to write static regular expressions and use
1.7 +/// them.
1.8 +//
1.9 +// Copyright 2004 Eric Niebler. Distributed under the Boost
1.10 +// Software License, Version 1.0. (See accompanying file
1.11 +// LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
1.12 +
1.13 +#ifndef BOOST_XPRESSIVE_STATIC_HPP_EAN_10_04_2005
1.14 +#define BOOST_XPRESSIVE_STATIC_HPP_EAN_10_04_2005
1.15 +
1.16 +// MS compatible compilers support #pragma once
1.17 +#if defined(_MSC_VER) && (_MSC_VER >= 1020)
1.18 +# pragma once
1.19 +#endif
1.20 +
1.21 +#ifdef _MSC_VER
1.22 +// inline aggressively
1.23 +# pragma inline_recursion(on) // turn on inline recursion
1.24 +# pragma inline_depth(255) // max inline depth
1.25 +#endif
1.26 +
1.27 +#include <boost/xpressive/regex_primitives.hpp>
1.28 +#include <boost/xpressive/basic_regex.hpp>
1.29 +#include <boost/xpressive/sub_match.hpp>
1.30 +#include <boost/xpressive/match_results.hpp>
1.31 +#include <boost/xpressive/regex_algorithms.hpp>
1.32 +#include <boost/xpressive/regex_iterator.hpp>
1.33 +#include <boost/xpressive/regex_token_iterator.hpp>
1.34 +
1.35 +#endif