Back to home page

EIC code displayed by LXR

 
 

    


Warning, file /include/boost/regex_fwd.hpp was not indexed or was modified since last indexation (in which case cross-reference links may be missing, inaccurate or erroneous).

0001 /*
0002  *
0003  * Copyright (c) 1998-2002
0004  * John Maddock
0005  *
0006  * Use, modification and distribution are subject to the 
0007  * Boost 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  */
0011 
0012  /*
0013   *   LOCATION:    see http://www.boost.org/libs/regex for documentation.
0014   *   FILE         regex_fwd.cpp
0015   *   VERSION      see <boost/version.hpp>
0016   *   DESCRIPTION: Forward declares boost::basic_regex<> and
0017   *                associated typedefs.
0018   */
0019 
0020 #ifndef BOOST_REGEX_FWD_HPP
0021 #define BOOST_REGEX_FWD_HPP
0022 
0023 #ifndef BOOST_REGEX_CONFIG_HPP
0024 #include <boost/regex/config.hpp>
0025 #endif
0026 
0027 #ifdef BOOST_REGEX_CXX03
0028 #include <boost/regex/v4/regex_fwd.hpp>
0029 #else
0030 #include <boost/regex/v5/regex_fwd.hpp>
0031 #endif
0032 
0033 #endif
0034 
0035 
0036 
0037