]> git.proxmox.com Git - ceph.git/blob - ceph/src/boost/libs/spirit/example/qi/compiler_tutorial/conjure3/statement.cpp
add subtree-ish sources for 12.0.3
[ceph.git] / ceph / src / boost / libs / spirit / example / qi / compiler_tutorial / conjure3 / statement.cpp
1 /*=============================================================================
2 Copyright (c) 2001-2011 Joel de Guzman
3 Copyright (c) 2001-2011 Hartmut Kaiser
4
5 Distributed under the Boost Software License, Version 1.0. (See accompanying
6 file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
7 =============================================================================*/
8 #if defined(_MSC_VER)
9 # pragma warning(disable: 4345)
10 #endif
11
12 #include "config.hpp"
13 #include "lexer.hpp"
14 #include "statement_def.hpp"
15
16 typedef std::string::const_iterator base_iterator_type;
17 typedef client::lexer::conjure_tokens<base_iterator_type> lexer_type;
18 typedef lexer_type::iterator_type iterator_type;
19
20 template struct client::parser::statement<iterator_type, lexer_type>;