1 /*=============================================================================
2     Copyright (c) 2002 2004 2006 Joel de Guzman
3     Copyright (c) 2004 Eric Niebler
4     http://spirit.sourceforge.net/
5 
6     Use, modification and distribution is subject to the Boost Software
7     License, Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at
8     http://www.boost.org/LICENSE_1_0.txt)
9 =============================================================================*/
10 #if !defined(BOOST_SPIRIT_MARKUPS_HPP)
11 #define BOOST_SPIRIT_MARKUPS_HPP
12 
13 #include <iosfwd>
14 #include "values.hpp"
15 
16 namespace quickbook
17 {
18     namespace detail
19     {
20         struct markup
21         {
22             value::tag_type tag;
23             char const* pre;
24             char const* post;
25         };
26 
27         markup const& get_markup(value::tag_type);
28         std::ostream& operator<<(std::ostream&, markup const&);
29     }
30 }
31 
32 #endif // BOOST_SPIRIT_MARKUPS_HPP
33