• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 /*=============================================================================
2     Copyright (c) 2001-2018 Joel de Guzman
3 
4     Distributed under the Boost Software License, Version 1.0. (See accompanying
5     file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
6 =============================================================================*/
7 #if !defined(BOOST_SPIRIT_X3_MINIMAL_CONFIG_HPP)
8 #define BOOST_SPIRIT_X3_MINIMAL_CONFIG_HPP
9 
10 #include <boost/spirit/home/x3.hpp>
11 
12 namespace client { namespace parser
13 {
14     namespace x3 = boost::spirit::x3;
15 
16     using iterator_type = std::string::const_iterator;
17     using context_type = x3::phrase_parse_context<x3::ascii::space_type>::type;
18 }}
19 
20 #endif
21