Back to home page

EIC code displayed by LXR

 
 

    


Warning, file /include/boost/regex.h was not indexed or was modified since last indexation (in which case cross-reference links may be missing, inaccurate or erroneous).

0001 /*
0002  *
0003  * Copyright (c) 1998-2000
0004  * Dr John Maddock
0005  *
0006  * Use, modification and distribution are subject to the 
0007  * Boost Software License, Version 1.0. (See accompanying file 
0008  * LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
0009  *
0010  */
0011  
0012  /*
0013   *   LOCATION:    see http://www.boost.org/libs/regex for documentation.
0014   *   FILE         regex.h
0015   *   VERSION      3.12
0016   *   DESCRIPTION: Declares POSIX API functions
0017   */
0018 
0019 #ifndef BOOST_RE_REGEX_H
0020 #define BOOST_RE_REGEX_H
0021 
0022 #include <boost/cregex.hpp>
0023 
0024 /*
0025 *  add using declarations to bring POSIX API functions into
0026 * global scope, only if this is C++ (and not C).
0027 */
0028 #ifdef __cplusplus
0029 
0030 using boost::regoff_t;
0031 using boost::regex_tA;
0032 using boost::regmatch_t;
0033 using boost::REG_BASIC;
0034 using boost::REG_EXTENDED;
0035 using boost::REG_ICASE;
0036 using boost::REG_NOSUB;
0037 using boost::REG_NEWLINE;
0038 using boost::REG_NOSPEC;
0039 using boost::REG_PEND;
0040 using boost::REG_DUMP;
0041 using boost::REG_NOCOLLATE;
0042 using boost::REG_ESCAPE_IN_LISTS;
0043 using boost::REG_NEWLINE_ALT;
0044 using boost::REG_PERL;
0045 using boost::REG_AWK;
0046 using boost::REG_GREP;
0047 using boost::REG_EGREP;
0048 using boost::REG_ASSERT;
0049 using boost::REG_INVARG;
0050 using boost::REG_ATOI;
0051 using boost::REG_ITOA;
0052 
0053 using boost::REG_NOTBOL;
0054 using boost::REG_NOTEOL;
0055 using boost::REG_STARTEND;
0056 
0057 using boost::reg_comp_flags;
0058 using boost::reg_exec_flags;
0059 using boost::regcompA;
0060 using boost::regerrorA;
0061 using boost::regexecA;
0062 using boost::regfreeA;
0063 
0064 #ifndef BOOST_NO_WREGEX
0065 using boost::regcompW;
0066 using boost::regerrorW;
0067 using boost::regexecW;
0068 using boost::regfreeW;
0069 using boost::regex_tW;
0070 #endif
0071 
0072 using boost::REG_NOERROR;
0073 using boost::REG_NOMATCH;
0074 using boost::REG_BADPAT;
0075 using boost::REG_ECOLLATE;
0076 using boost::REG_ECTYPE;
0077 using boost::REG_EESCAPE;
0078 using boost::REG_ESUBREG;
0079 using boost::REG_EBRACK;
0080 using boost::REG_EPAREN;
0081 using boost::REG_EBRACE;
0082 using boost::REG_BADBR;
0083 using boost::REG_ERANGE;
0084 using boost::REG_ESPACE;
0085 using boost::REG_BADRPT;
0086 using boost::REG_EEND;
0087 using boost::REG_ESIZE;
0088 using boost::REG_ERPAREN;
0089 using boost::REG_EMPTY;
0090 using boost::REG_E_MEMORY;
0091 using boost::REG_E_UNKNOWN;
0092 using boost::reg_errcode_t;
0093 
0094 #endif /* __cplusplus */
0095 
0096 #endif /* BOOST_RE_REGEX_H */
0097 
0098 
0099 
0100