]> git.proxmox.com Git - ceph.git/blob - ceph/src/boost/libs/spirit/include/boost/spirit/home/classic/core/non_terminal/subrule_fwd.hpp
add subtree-ish sources for 12.0.3
[ceph.git] / ceph / src / boost / libs / spirit / include / boost / spirit / home / classic / core / non_terminal / subrule_fwd.hpp
1 /*=============================================================================
2 Copyright (c) 2006 Tobias Schwinger
3 http://spirit.sourceforge.net/
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(BOOST_SPIRIT_SUBRULE_FWD_HPP)
9 #define BOOST_SPIRIT_SUBRULE_FWD_HPP
10
11 #include <boost/spirit/home/classic/namespace.hpp>
12 #include <boost/spirit/home/classic/core/non_terminal/parser_context.hpp>
13
14 namespace boost { namespace spirit {
15
16 BOOST_SPIRIT_CLASSIC_NAMESPACE_BEGIN
17
18 template <int ID, typename ContextT = parser_context<> >
19 struct subrule;
20
21 template <int ID, typename DefT, typename ContextT = parser_context<> >
22 struct subrule_parser;
23
24 template <typename ScannerT, typename ListT>
25 struct subrules_scanner;
26
27 template <typename FirstT, typename RestT>
28 struct subrule_list;
29
30 BOOST_SPIRIT_CLASSIC_NAMESPACE_END
31
32 }} // namespace BOOST_SPIRIT_CLASSIC_NS
33
34 #endif
35