Imported Upstream version 1.51.0
[platform/upstream/boost.git] / libs / spirit / example / scheme / qi / generate_qiexpr.hpp
1 //  Copyright (c) 2001-2010 Hartmut Kaiser
2 // 
3 //  Distributed under the Boost Software License, Version 1.0. (See accompanying 
4 //  file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
5
6 #if !defined(BOOST_SPIRIT_GENERATE_QIEXPR)
7 #define BOOST_SPIRIT_GENERATE_QIEXPR
8
9 #include <output/sexpr.hpp>
10
11 namespace scheme { namespace output
12 {
13     template <typename String>
14     bool generate_qi_expr(utree& result, String& str);
15
16     template <typename String>
17     bool generate_qi_expr_list(utree& result, String& str);
18 }}
19
20 #endif
21
22