Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2025-01-18 09:53:55

0001 ///////////////////////////////////////////////////////////////////////////////
0002 /// \file xpressive_static.hpp
0003 /// Includes everything you need to write static regular expressions and use
0004 /// them.
0005 //
0006 //  Copyright 2008 Eric Niebler. Distributed under the Boost
0007 //  Software License, Version 1.0. (See accompanying file
0008 //  LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
0009 
0010 #ifndef BOOST_XPRESSIVE_STATIC_HPP_EAN_10_04_2005
0011 #define BOOST_XPRESSIVE_STATIC_HPP_EAN_10_04_2005
0012 
0013 // MS compatible compilers support #pragma once
0014 #if defined(_MSC_VER)
0015 # pragma once
0016 #endif
0017 
0018 #ifdef _MSC_VER
0019 // inline aggressively
0020 # pragma inline_recursion(on) // turn on inline recursion
0021 # pragma inline_depth(255)    // max inline depth
0022 #endif
0023 
0024 #include <boost/xpressive/regex_primitives.hpp>
0025 #include <boost/xpressive/basic_regex.hpp>
0026 #include <boost/xpressive/sub_match.hpp>
0027 #include <boost/xpressive/match_results.hpp>
0028 #include <boost/xpressive/regex_algorithms.hpp>
0029 #include <boost/xpressive/regex_iterator.hpp>
0030 #include <boost/xpressive/regex_token_iterator.hpp>
0031 
0032 #endif