regex.hpp

来自「CGAL is a collaborative effort of severa」· HPP 代码 · 共 106 行

HPP
106
字号
/*=============================================================================    Copyright (c) 2002-2003 Hartmut Kaiser    http://spirit.sourceforge.net/    Use, modification and distribution is 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)=============================================================================*/#ifndef BOOST_SPIRIT_REGEX_HPP#define BOOST_SPIRIT_REGEX_HPP///////////////////////////////////////////////////////////////////////////////////  Include the regular expression library of boost (Boost.Regex)////  Note though, that this library is not distributed with Spirit. You have to//  obtain a separate copy from http://www.boost.org./////////////////////////////////////////////////////////////////////////////////#if defined(BOOST_SPIRIT_NO_REGEX_LIB)////  Include all the Boost.regex library. Please note that this will not work,//  if you are using the boost/spirit/regex.hpp header from more than one//  translation units.//#define BOOST_REGEX_NO_LIB#define BOOST_REGEX_STATIC_LINK#define BOOST_REGEX_NO_EXTERNAL_TEMPLATES#include <boost/regex.hpp>#include <boost/regex/src.cpp>#else////  Include the Boost.Regex headers only. Note, that you will have to link your//  application against the Boost.Regex library as described in the related//  documentation.//#include <boost/regex.hpp>#endif // defined(BOOST_SPIRIT_NO_REGEX_LIB)#include <boost/static_assert.hpp>///////////////////////////////////////////////////////////////////////////////#include <boost/spirit/meta/as_parser.hpp>#include <boost/spirit/core/parser.hpp>#include <boost/spirit/utility/impl/regex.ipp>#include <boost/detail/iterator.hpp> // for boost::detail::iterator_traits///////////////////////////////////////////////////////////////////////////////namespace boost { namespace spirit {///////////////////////////////////////////////////////////////////////////////// rxstrlit classtemplate <typename CharT = char>struct rxstrlit : public parser<rxstrlit<CharT> > {    typedef rxstrlit self_t;    rxstrlit(CharT const *first, CharT const *last)    : rx(first, last) {}    rxstrlit(CharT const *first)    : rx(first) {}    template <typename ScannerT>    typename parser_result<self_t, ScannerT>::type    parse(ScannerT const& scan) const    {    //  Due to limitations in the boost::regex library the iterators wrapped in    //  the ScannerT object should be at least bidirectional iterators. Plain    //  forward iterators do not work here.        typedef typename ScannerT::iterator_t iterator_t;        typedef            typename boost::detail::iterator_traits<iterator_t>::iterator_category            iterator_category;        BOOST_STATIC_ASSERT((            boost::is_convertible<iterator_category,                std::bidirectional_iterator_tag>::value        ));        typedef typename parser_result<self_t, ScannerT>::type result_t;        return impl::contiguous_parser_parse<result_t>(rx, scan, scan);    }private:    impl::rx_parser<CharT> rx;   // contains the boost regular expression parser};///////////////////////////////////////////////////////////////////////////////// Generator functionstemplate <typename CharT>inline rxstrlit<CharT>regex_p(CharT const *first){ return rxstrlit<CharT>(first); }//////////////////////////////////template <typename CharT>inline rxstrlit<CharT>regex_p(CharT const *first, CharT const *last){ return rxstrlit<CharT>(first, last); }///////////////////////////////////////////////////////////////////////////////}} // namespace boost::spirit#endif // BOOST_SPIRIT_REGEX_HPP

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?