Sophie

Sophie

distrib > Fedora > 17 > i386 > media > updates > by-pkgid > b03c44838559deaeff848c57e893606a > files > 1872

boost-examples-1.48.0-14.fc17.noarch.rpm

//  Copyright (c) 2001-2010 Hartmut Kaiser
// 
//  Distributed under 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)

#if !defined(BOOST_SPIRIT_PARSE_QIEXPR_IMPL)
#define BOOST_SPIRIT_PARSE_QIEXPR_IMPL

#include <iostream>
#include <boost/spirit/include/support_istream_iterator.hpp>
#include <boost/spirit/include/qi_parse.hpp>

#include <qi/qiexpr_parser.hpp>
#include <qi/parse_qiexpr.hpp>

namespace scheme { namespace input
{
    ///////////////////////////////////////////////////////////////////////////
    template <typename String>
    bool parse_qi_expr(String const& str, utree& result)
    {
        typedef typename String::const_iterator iterator_type;

        scheme::qi::qiexpr_parser<iterator_type> p;
        scheme::qi::qiexpr_white_space<iterator_type> ws;

        iterator_type begin = str.begin();
        iterator_type end = str.end();
        return phrase_parse(begin, end, p, ws, result) && begin == end;
    }

    ///////////////////////////////////////////////////////////////////////////
    template <typename String>
    bool parse_qi_rule(String const& str, utree& result)
    {
        typedef typename String::const_iterator iterator_type;

        scheme::qi::qiexpr_parser<iterator_type> p;
        scheme::qi::qiexpr_white_space<iterator_type> ws;

        iterator_type begin = str.begin();
        iterator_type end = str.end();
        return phrase_parse(begin, end, p.rule_, ws, result) && begin == end;
    }

    ///////////////////////////////////////////////////////////////////////////
    template <typename String>
    bool parse_qi_grammar(String const& str, utree& result)
    {
        typedef typename String::const_iterator iterator_type;

        scheme::qi::qiexpr_parser<iterator_type> p;
        scheme::qi::qiexpr_white_space<iterator_type> ws;

        iterator_type begin = str.begin();
        iterator_type end = str.end();
        return phrase_parse(begin, end, p.grammar_, ws, result) && begin == end;
    }
}}

#endif