Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2025-01-30 10:02:37

0001 ///////////////////////////////////////////////////////////////////////////////
0002 /// \file xpressive_dynamic.hpp
0003 /// Includes everything you need to write and use dynamic regular expressions.
0004 //
0005 //  Copyright 2008 Eric Niebler. Distributed under the Boost
0006 //  Software License, Version 1.0. (See accompanying file
0007 //  LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
0008 
0009 #ifndef BOOST_XPRESSIVE_DYNAMIC_HPP_EAN_10_04_2005
0010 #define BOOST_XPRESSIVE_DYNAMIC_HPP_EAN_10_04_2005
0011 
0012 // MS compatible compilers support #pragma once
0013 #if defined(_MSC_VER)
0014 # pragma once
0015 #endif
0016 
0017 #include <boost/xpressive/regex_compiler.hpp>
0018 #include <boost/xpressive/basic_regex.hpp>
0019 #include <boost/xpressive/sub_match.hpp>
0020 #include <boost/xpressive/match_results.hpp>
0021 #include <boost/xpressive/regex_algorithms.hpp>
0022 #include <boost/xpressive/regex_iterator.hpp>
0023 #include <boost/xpressive/regex_token_iterator.hpp>
0024 
0025 #endif