Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: downloads/boost_1_34_1/boost/spirit/tree/parse_tree_fwd.hpp @ 47

Last change on this file since 47 was 29, checked in by landauf, 16 years ago

updated boost from 1_33_1 to 1_34_1

File size: 885 bytes
Line 
1/*=============================================================================
2    Copyright (c) 2006 Tobias Schwinger
3    http://spirit.sourceforge.net/
4
5    Use, modification and distribution is subject to the Boost Software
6    License, Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at
7    http://www.boost.org/LICENSE_1_0.txt)
8=============================================================================*/
9#if !defined(BOOST_SPIRIT_TREE_PARSE_TREE_FWD_HPP)
10#define BOOST_SPIRIT_TREE_PARSE_TREE_FWD_HPP
11
12namespace boost { namespace spirit {
13
14    template <typename MatchPolicyT, typename NodeFactoryT>
15    struct pt_tree_policy;
16
17    template <
18        typename IteratorT,
19        typename NodeFactoryT = node_val_data_factory<nil_t>
20    >
21    struct pt_match_policy;
22
23    template <typename T>
24    struct gen_pt_node_parser;
25
26}} // namespace boost::spirit
27
28#endif
29
Note: See TracBrowser for help on using the repository browser.