27 lines
916 B
C++
27 lines
916 B
C++
/*=============================================================================
|
|
Copyright (c) 2001-2014 Joel de Guzman
|
|
|
|
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_X3_CALC8_CONFIG_HPP)
|
|
#define BOOST_SPIRIT_X3_CALC8_CONFIG_HPP
|
|
|
|
#include <boost/spirit/home/x3.hpp>
|
|
#include "error_handler.hpp"
|
|
|
|
namespace client { namespace parser
|
|
{
|
|
typedef std::string::const_iterator iterator_type;
|
|
typedef x3::phrase_parse_context<x3::ascii::space_type>::type phrase_context_type;
|
|
typedef error_handler<iterator_type> error_handler_type;
|
|
|
|
typedef x3::context<
|
|
error_handler_tag
|
|
, std::reference_wrapper<error_handler_type>
|
|
, phrase_context_type>
|
|
context_type;
|
|
}}
|
|
|
|
#endif
|