/* * * 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_fwd.cpp * VERSION see * DESCRIPTION: Forward declares cutl_details_boost::basic_regex<> and * associated typedefs. */ #ifndef BOOST_REGEX_FWD_HPP_INCLUDED #define BOOST_REGEX_FWD_HPP_INCLUDED #ifndef BOOST_REGEX_CONFIG_HPP #include #endif // // define BOOST_REGEX_NO_FWD if this // header doesn't work! // #ifdef BOOST_REGEX_NO_FWD # ifndef BOOST_RE_REGEX_HPP # include # endif #else namespace cutl_details_boost{ template class cpp_regex_traits; template struct c_regex_traits; template class w32_regex_traits; #ifdef BOOST_REGEX_USE_WIN32_LOCALE template > struct regex_traits; #elif defined(BOOST_REGEX_USE_CPP_LOCALE) template > struct regex_traits; #else template > struct regex_traits; #endif template > class basic_regex; typedef basic_regex > regex; #ifndef BOOST_NO_WREGEX typedef basic_regex > wregex; #endif } // namespace cutl_details_boost #endif // BOOST_REGEX_NO_FWD #endif