summaryrefslogtreecommitdiff
path: root/tools/quickbook/src/template_tags.hpp
blob: a47158dae627eaf36153f7860d7b7b53d5dc1d07 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
/*=============================================================================
    Copyright (c) 2011 Daniel James

    Use, modification and distribution is subject to the Boost Software
    License, Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at
    http://www.boost.org/LICENSE_1_0.txt)
=============================================================================*/

#if !defined(BOOST_SPIRIT_QUICKBOOK_TEMPLATE_TAGS_HPP)
#define BOOST_SPIRIT_QUICKBOOK_TEMPLATE_TAGS_HPP

#include "value_tags.hpp"

namespace quickbook
{
    QUICKBOOK_VALUE_TAGS(template_tags, 0x100,
        (template_)
        (escape)
        (identifier)
        (block)
        (phrase)
        (snippet)
    )
}

#endif