domain.hpp 820 B

12345678910111213141516171819202122232425262728293031
  1. // Copyright (c) 2001-2011 Joel de Guzman
  2. // Copyright (c) 2001-2011 Hartmut Kaiser
  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. #if !defined(BOOST_SPIRIT_LEX_DOMAIN_MAR_13_2007_0140PM)
  7. #define BOOST_SPIRIT_LEX_DOMAIN_MAR_13_2007_0140PM
  8. #if defined(_MSC_VER)
  9. #pragma once
  10. #endif
  11. #include <boost/spirit/home/support/unused.hpp>
  12. #include <boost/spirit/home/support/meta_compiler.hpp>
  13. #include <boost/spirit/home/support/info.hpp>
  14. namespace boost { namespace spirit { namespace lex
  15. {
  16. // lex's domain
  17. struct domain {};
  18. // bring in some of spirit parts into spirit::lex
  19. using spirit::unused;
  20. using spirit::unused_type;
  21. using spirit::compile;
  22. using spirit::info;
  23. }}}
  24. #endif