|
||||
File indexing completed on 2024-11-15 09:34:17
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.cpp 0015 * VERSION see <boost/version.hpp> 0016 * DESCRIPTION: Declares boost::basic_regex<> and associated 0017 * functions and classes. This header is the main 0018 * entry point for the template regex code. 0019 */ 0020 0021 0022 /* start with C compatibility API */ 0023 0024 #ifndef BOOST_RE_REGEX_HPP 0025 #define BOOST_RE_REGEX_HPP 0026 0027 #ifndef BOOST_REGEX_CONFIG_HPP 0028 #include <boost/regex/config.hpp> 0029 #endif 0030 0031 #ifdef BOOST_REGEX_CXX03 0032 #include <boost/regex/v4/regex.hpp> 0033 #else 0034 #include <boost/regex/v5/regex.hpp> 0035 #endif 0036 0037 #endif // include 0038 0039 0040 0041
[ Source navigation ] | [ Diff markup ] | [ Identifier search ] | [ general search ] |
This page was automatically generated by the 2.3.7 LXR engine. The LXR team |