/* * * Copyright (c) 1998-2002 * John Maddock * * Use, modification and distribution are subject to the * Boost Software License, Version 1.0. (See accompanying file * LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) * */ /* * LOCATION: see http://www.boost.org for most recent version. * FILE regex.cpp * VERSION see * DESCRIPTION: Declares boost::basic_regex<> and associated * functions and classes. This header is the main * entry point for the template regex code. */ #ifndef BOOST_RE_REGEX_HPP_INCLUDED #define BOOST_RE_REGEX_HPP_INCLUDED #ifdef __cplusplus // what follows is all C++ don't include in C builds!! #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include namespace boost{ #ifdef BOOST_REGEX_NO_FWD typedef basic_regex > regex; #ifndef BOOST_NO_WREGEX typedef basic_regex > wregex; #endif #endif typedef match_results cmatch; typedef match_results smatch; #ifndef BOOST_NO_WREGEX typedef match_results wcmatch; typedef match_results wsmatch; #endif } // namespace boost #include #include #include #include #include #include #include #include #endif // __cplusplus #endif // include