config.hpp 712 B

1234567891011121314151617181920
  1. /*=============================================================================
  2. Copyright (c) 2001-2018 Joel de Guzman
  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_X3_MINIMAL_CONFIG_HPP)
  7. #define BOOST_SPIRIT_X3_MINIMAL_CONFIG_HPP
  8. #include <boost/spirit/home/x3.hpp>
  9. namespace client { namespace parser
  10. {
  11. namespace x3 = boost::spirit::x3;
  12. using iterator_type = std::string::const_iterator;
  13. using context_type = x3::phrase_parse_context<x3::ascii::space_type>::type;
  14. }}
  15. #endif