1 /*============================================================================= 2 Copyright (c) 2002 2004 2006 Joel de Guzman 3 Copyright (c) 2004 Eric Niebler 4 Copyright (c) 2010 Daniel James 5 http://spirit.sourceforge.net/ 6 7 Use, modification and distribution is subject to the Boost Software 8 License, Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at 9 http://www.boost.org/LICENSE_1_0.txt) 10 =============================================================================*/ 11 #if !defined(BOOST_SPIRIT_FWD_HPP) 12 #define BOOST_SPIRIT_FWD_HPP 13 14 #include <boost/intrusive_ptr.hpp> 15 16 namespace quickbook 17 { 18 struct state; 19 struct quickbook_grammar; 20 struct collector; 21 struct document_state; 22 struct section_info; 23 struct file; 24 struct template_symbol; 25 typedef boost::intrusive_ptr<file> file_ptr; 26 typedef unsigned source_mode_type; 27 ignore_variable(void const *)28 inline void ignore_variable(void const*) {} 29 } 30 31 #endif 32