sl@0: /* sl@0: * sl@0: * Copyright (c) 1998-2000 sl@0: * Dr John Maddock sl@0: * sl@0: * Use, modification and distribution are subject to the sl@0: * Boost Software License, Version 1.0. (See accompanying file sl@0: * LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) sl@0: * sl@0: */ sl@0: sl@0: /* sl@0: * LOCATION: see http://www.boost.org/libs/regex for documentation. sl@0: * FILE regex.h sl@0: * VERSION 3.12 sl@0: * DESCRIPTION: Declares POSIX API functions sl@0: */ sl@0: sl@0: #ifndef BOOST_RE_REGEX_H sl@0: #define BOOST_RE_REGEX_H sl@0: sl@0: #include sl@0: sl@0: /* sl@0: * add using declarations to bring POSIX API functions into sl@0: * global scope, only if this is C++ (and not C). sl@0: */ sl@0: #ifdef __cplusplus sl@0: sl@0: using boost::regoff_t; sl@0: using boost::regex_tA; sl@0: using boost::regmatch_t; sl@0: using boost::REG_BASIC; sl@0: using boost::REG_EXTENDED; sl@0: using boost::REG_ICASE; sl@0: using boost::REG_NOSUB; sl@0: using boost::REG_NEWLINE; sl@0: using boost::REG_NOSPEC; sl@0: using boost::REG_PEND; sl@0: using boost::REG_DUMP; sl@0: using boost::REG_NOCOLLATE; sl@0: using boost::REG_ESCAPE_IN_LISTS; sl@0: using boost::REG_NEWLINE_ALT; sl@0: using boost::REG_PERL; sl@0: using boost::REG_AWK; sl@0: using boost::REG_GREP; sl@0: using boost::REG_EGREP; sl@0: using boost::REG_ASSERT; sl@0: using boost::REG_INVARG; sl@0: using boost::REG_ATOI; sl@0: using boost::REG_ITOA; sl@0: sl@0: using boost::REG_NOTBOL; sl@0: using boost::REG_NOTEOL; sl@0: using boost::REG_STARTEND; sl@0: sl@0: using boost::reg_comp_flags; sl@0: using boost::reg_exec_flags; sl@0: using boost::regcompA; sl@0: using boost::regerrorA; sl@0: using boost::regexecA; sl@0: using boost::regfreeA; sl@0: sl@0: #ifndef BOOST_NO_WREGEX sl@0: using boost::regcompW; sl@0: using boost::regerrorW; sl@0: using boost::regexecW; sl@0: using boost::regfreeW; sl@0: using boost::regex_tW; sl@0: #endif sl@0: sl@0: using boost::REG_NOERROR; sl@0: using boost::REG_NOMATCH; sl@0: using boost::REG_BADPAT; sl@0: using boost::REG_ECOLLATE; sl@0: using boost::REG_ECTYPE; sl@0: using boost::REG_EESCAPE; sl@0: using boost::REG_ESUBREG; sl@0: using boost::REG_EBRACK; sl@0: using boost::REG_EPAREN; sl@0: using boost::REG_EBRACE; sl@0: using boost::REG_BADBR; sl@0: using boost::REG_ERANGE; sl@0: using boost::REG_ESPACE; sl@0: using boost::REG_BADRPT; sl@0: using boost::REG_EEND; sl@0: using boost::REG_ESIZE; sl@0: using boost::REG_ERPAREN; sl@0: using boost::REG_EMPTY; sl@0: using boost::REG_E_MEMORY; sl@0: using boost::REG_E_UNKNOWN; sl@0: using boost::reg_errcode_t; sl@0: sl@0: #endif /* __cplusplus */ sl@0: sl@0: #endif /* BOOST_RE_REGEX_H */ sl@0: sl@0: sl@0: sl@0: