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 
7 #if !defined(BOOST_SPIRIT_LEX_DOMAIN_MAR_13_2007_0140PM)
8 #define BOOST_SPIRIT_LEX_DOMAIN_MAR_13_2007_0140PM
9 
10 #if defined(_MSC_VER)
11 #pragma once
12 #endif
13 
14 #include <boost/spirit/home/support/unused.hpp>
15 #include <boost/spirit/home/support/meta_compiler.hpp>
16 #include <boost/spirit/home/support/info.hpp>
17 
18 namespace boost { namespace spirit { namespace lex
19 {
20     // lex's domain
21     struct domain {};
22 
23     // bring in some of spirit parts into spirit::lex
24     using spirit::unused;
25     using spirit::unused_type;
26     using spirit::compile;
27     using spirit::info;
28 
29 }}}
30 
31 #endif
32