| 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 "expression_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::expression<iterator_type, lexer_type>; |
| 21 |
