2002-05-21 23:39:58 +00:00
|
|
|
/*
|
|
|
|
*
|
|
|
|
* Copyright (c) 1998-2002
|
2006-03-05 18:22:35 +00:00
|
|
|
* John Maddock
|
2002-05-21 23:39:58 +00:00
|
|
|
*
|
2004-02-05 09:14:22 +00:00
|
|
|
* 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)
|
2002-05-21 23:39:58 +00:00
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
/*
|
2003-03-03 15:53:48 +00:00
|
|
|
* LOCATION: see http://www.boost.org/libs/regex for documentation.
|
2002-05-21 23:39:58 +00:00
|
|
|
* FILE regex.cpp
|
|
|
|
* VERSION see <boost/version.hpp>
|
2006-03-05 18:22:35 +00:00
|
|
|
* DESCRIPTION: Declares boost::basic_regex<> and associated
|
2002-05-21 23:39:58 +00:00
|
|
|
* functions and classes. This header is the main
|
|
|
|
* entry point for the template regex code.
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
/* start with C compatibility API */
|
|
|
|
|
|
|
|
#ifndef BOOST_RE_REGEX_HPP
|
|
|
|
#define BOOST_RE_REGEX_HPP
|
|
|
|
|
2004-02-05 09:14:22 +00:00
|
|
|
#ifndef BOOST_REGEX_CONFIG_HPP
|
|
|
|
#include <boost/regex/config.hpp>
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#include <boost/regex/v4/regex.hpp>
|
2002-05-21 23:39:58 +00:00
|
|
|
|
|
|
|
#endif // include
|
|
|
|
|
|
|
|
|
2004-02-05 09:14:22 +00:00
|
|
|
|
|
|
|
|