forked from boostorg/regex
Compare commits
2 Commits
backstep_r
...
svn-branch
Author | SHA1 | Date | |
---|---|---|---|
aee541b006 | |||
33c6aa103a |
@ -1,45 +0,0 @@
|
|||||||
/*
|
|
||||||
*
|
|
||||||
* Copyright (c) 1998-2002
|
|
||||||
* Dr John Maddock
|
|
||||||
*
|
|
||||||
* Permission to use, copy, modify, distribute and sell this software
|
|
||||||
* and its documentation for any purpose is hereby granted without fee,
|
|
||||||
* provided that the above copyright notice appear in all copies and
|
|
||||||
* that both that copyright notice and this permission notice appear
|
|
||||||
* in supporting documentation. Dr John Maddock makes no representations
|
|
||||||
* about the suitability of this software for any purpose.
|
|
||||||
* It is provided "as is" without express or implied warranty.
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
|
|
||||||
/*
|
|
||||||
* LOCATION: see http://www.boost.org/libs/regex for most recent version.
|
|
||||||
* 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
|
|
||||||
|
|
||||||
#ifndef BOOST_REGEX_CONFIG_HPP
|
|
||||||
#include <boost/regex/config.hpp>
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#ifdef BOOST_REGEX_V3
|
|
||||||
#include <boost/regex/v3/cregex.hpp>
|
|
||||||
#else
|
|
||||||
#include <boost/regex/v4/cregex.hpp>
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#endif // include guard
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
@ -1,102 +0,0 @@
|
|||||||
/*
|
|
||||||
*
|
|
||||||
* Copyright (c) 1998-2000
|
|
||||||
* Dr John Maddock
|
|
||||||
*
|
|
||||||
* Permission to use, copy, modify, distribute and sell this software
|
|
||||||
* and its documentation for any purpose is hereby granted without fee,
|
|
||||||
* provided that the above copyright notice appear in all copies and
|
|
||||||
* that both that copyright notice and this permission notice appear
|
|
||||||
* in supporting documentation. Dr John Maddock makes no representations
|
|
||||||
* about the suitability of this software for any purpose.
|
|
||||||
* It is provided "as is" without express or implied warranty.
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
|
|
||||||
/*
|
|
||||||
* LOCATION: see http://www.boost.org/libs/regex for documentation.
|
|
||||||
* FILE regex.h
|
|
||||||
* VERSION 3.12
|
|
||||||
* DESCRIPTION: Declares POSIX API functions
|
|
||||||
*/
|
|
||||||
|
|
||||||
#ifndef BOOST_RE_REGEX_H
|
|
||||||
#define BOOST_RE_REGEX_H
|
|
||||||
|
|
||||||
#include <boost/cregex.hpp>
|
|
||||||
|
|
||||||
//
|
|
||||||
// add using declarations to bring POSIX API functions into
|
|
||||||
// global scope, only if this is C++ (and not C).
|
|
||||||
//
|
|
||||||
#ifdef __cplusplus
|
|
||||||
|
|
||||||
using boost::regoff_t;
|
|
||||||
using boost::regex_tA;
|
|
||||||
using boost::regmatch_t;
|
|
||||||
using boost::REG_BASIC;
|
|
||||||
using boost::REG_EXTENDED;
|
|
||||||
using boost::REG_ICASE;
|
|
||||||
using boost::REG_NOSUB;
|
|
||||||
using boost::REG_NEWLINE;
|
|
||||||
using boost::REG_NOSPEC;
|
|
||||||
using boost::REG_PEND;
|
|
||||||
using boost::REG_DUMP;
|
|
||||||
using boost::REG_NOCOLLATE;
|
|
||||||
using boost::REG_ESCAPE_IN_LISTS;
|
|
||||||
using boost::REG_NEWLINE_ALT;
|
|
||||||
using boost::REG_PERL;
|
|
||||||
using boost::REG_AWK;
|
|
||||||
using boost::REG_GREP;
|
|
||||||
using boost::REG_EGREP;
|
|
||||||
using boost::REG_ASSERT;
|
|
||||||
using boost::REG_INVARG;
|
|
||||||
using boost::REG_ATOI;
|
|
||||||
using boost::REG_ITOA;
|
|
||||||
|
|
||||||
using boost::REG_NOTBOL;
|
|
||||||
using boost::REG_NOTEOL;
|
|
||||||
using boost::REG_STARTEND;
|
|
||||||
|
|
||||||
using boost::reg_comp_flags;
|
|
||||||
using boost::reg_exec_flags;
|
|
||||||
using boost::regcompA;
|
|
||||||
using boost::regerrorA;
|
|
||||||
using boost::regexecA;
|
|
||||||
using boost::regfreeA;
|
|
||||||
|
|
||||||
#ifndef BOOST_NO_WREGEX
|
|
||||||
using boost::regcompW;
|
|
||||||
using boost::regerrorW;
|
|
||||||
using boost::regexecW;
|
|
||||||
using boost::regfreeW;
|
|
||||||
using boost::regex_tW;
|
|
||||||
#endif
|
|
||||||
|
|
||||||
using boost::REG_NOERROR;
|
|
||||||
using boost::REG_NOMATCH;
|
|
||||||
using boost::REG_BADPAT;
|
|
||||||
using boost::REG_ECOLLATE;
|
|
||||||
using boost::REG_ECTYPE;
|
|
||||||
using boost::REG_EESCAPE;
|
|
||||||
using boost::REG_ESUBREG;
|
|
||||||
using boost::REG_EBRACK;
|
|
||||||
using boost::REG_EPAREN;
|
|
||||||
using boost::REG_EBRACE;
|
|
||||||
using boost::REG_BADBR;
|
|
||||||
using boost::REG_ERANGE;
|
|
||||||
using boost::REG_ESPACE;
|
|
||||||
using boost::REG_BADRPT;
|
|
||||||
using boost::REG_EEND;
|
|
||||||
using boost::REG_ESIZE;
|
|
||||||
using boost::REG_ERPAREN;
|
|
||||||
using boost::REG_EMPTY;
|
|
||||||
using boost::REG_E_MEMORY;
|
|
||||||
using boost::REG_E_UNKNOWN;
|
|
||||||
using boost::reg_errcode_t;
|
|
||||||
|
|
||||||
#endif // __cplusplus
|
|
||||||
|
|
||||||
#endif // BOOST_RE_REGEX_H
|
|
||||||
|
|
||||||
|
|
@ -1,43 +0,0 @@
|
|||||||
/*
|
|
||||||
*
|
|
||||||
* Copyright (c) 1998-2002
|
|
||||||
* Dr John Maddock
|
|
||||||
*
|
|
||||||
* Permission to use, copy, modify, distribute and sell this software
|
|
||||||
* and its documentation for any purpose is hereby granted without fee,
|
|
||||||
* provided that the above copyright notice appear in all copies and
|
|
||||||
* that both that copyright notice and this permission notice appear
|
|
||||||
* in supporting documentation. Dr John Maddock makes no representations
|
|
||||||
* about the suitability of this software for any purpose.
|
|
||||||
* It is provided "as is" without express or implied warranty.
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
|
|
||||||
/*
|
|
||||||
* LOCATION: see http://www.boost.org/libs/regex for documentation.
|
|
||||||
* FILE regex.cpp
|
|
||||||
* VERSION see <boost/version.hpp>
|
|
||||||
* DESCRIPTION: Declares boost::reg_expression<> and associated
|
|
||||||
* 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
|
|
||||||
|
|
||||||
#ifndef BOOST_REGEX_CONFIG_HPP
|
|
||||||
#include <boost/regex/config.hpp>
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#ifdef BOOST_REGEX_V3
|
|
||||||
#include <boost/regex/v3/regex.hpp>
|
|
||||||
#else
|
|
||||||
#include <boost/regex/v4/regex.hpp>
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#endif // include
|
|
||||||
|
|
||||||
|
|
@ -1,40 +0,0 @@
|
|||||||
/*
|
|
||||||
*
|
|
||||||
* Copyright (c) 1998-2002
|
|
||||||
* Dr John Maddock
|
|
||||||
*
|
|
||||||
* Permission to use, copy, modify, distribute and sell this software
|
|
||||||
* and its documentation for any purpose is hereby granted without fee,
|
|
||||||
* provided that the above copyright notice appear in all copies and
|
|
||||||
* that both that copyright notice and this permission notice appear
|
|
||||||
* in supporting documentation. Dr John Maddock makes no representations
|
|
||||||
* about the suitability of this software for any purpose.
|
|
||||||
* It is provided "as is" without express or implied warranty.
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
|
|
||||||
/*
|
|
||||||
* LOCATION: see http://www.boost.org/libs/regex for documentation.
|
|
||||||
* FILE regex_fwd.cpp
|
|
||||||
* VERSION see <boost/version.hpp>
|
|
||||||
* DESCRIPTION: Forward declares boost::reg_expression<> and
|
|
||||||
* associated typedefs.
|
|
||||||
*/
|
|
||||||
|
|
||||||
#ifndef BOOST_REGEX_FWD_HPP
|
|
||||||
#define BOOST_REGEX_FWD_HPP
|
|
||||||
|
|
||||||
#ifndef BOOST_REGEX_CONFIG_HPP
|
|
||||||
#include <boost/regex/config.hpp>
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#ifdef BOOST_REGEX_V3
|
|
||||||
#include <boost/regex/v3/regex_fwd.hpp>
|
|
||||||
#else
|
|
||||||
#include <boost/regex/v4/regex_fwd.hpp>
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#endif
|
|
||||||
|
|
||||||
|
|
||||||
|
|
@ -36,7 +36,7 @@
|
|||||||
# define BOOST_REGEX_NO_TEST
|
# define BOOST_REGEX_NO_TEST
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#if defined(__GNUC__) && (__GNUC__ < 3) && defined(_STLP_VERSION) && defined(BOOST_REGEX_DYN_LINK)
|
#if defined(__GNUC__) && (__GNUC__ < 3) && (defined(__SGI_STL_PORT) || defined(_STLPORT_VERSION)) && defined(BOOST_REGEX_DYN_LINK)
|
||||||
// gcc2.95 + STLport runs out of memory trying to link, looks like a compiler bug...
|
// gcc2.95 + STLport runs out of memory trying to link, looks like a compiler bug...
|
||||||
# define BOOST_REGEX_NO_TEST
|
# define BOOST_REGEX_NO_TEST
|
||||||
#endif
|
#endif
|
||||||
|
Reference in New Issue
Block a user