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 most recent version.
|
2002-05-21 23:39:58 +00:00
|
|
|
* FILE cregex.cpp
|
|
|
|
* VERSION see <boost/version.hpp>
|
|
|
|
* DESCRIPTION: Declares POSIX API functions
|
|
|
|
* + boost::RegEx high level wrapper.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef BOOST_RE_CREGEX_HPP
|
|
|
|
#define BOOST_RE_CREGEX_HPP
|
|
|
|
|
2004-02-05 09:14:22 +00:00
|
|
|
#ifndef BOOST_REGEX_CONFIG_HPP
|
|
|
|
#include <boost/regex/config.hpp>
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#include <boost/regex/v4/cregex.hpp>
|
2002-05-21 23:39:58 +00:00
|
|
|
|
2004-11-20 09:08:45 +00:00
|
|
|
#endif /* include guard */
|
2002-05-21 23:39:58 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2003-03-03 15:53:48 +00:00
|
|
|
|
2004-02-05 09:14:22 +00:00
|
|
|
|
|
|
|
|