]> git.proxmox.com Git - ceph.git/blob - ceph/src/boost/tools/quickbook/src/doc_info_tags.hpp
add subtree-ish sources for 12.0.3
[ceph.git] / ceph / src / boost / tools / quickbook / src / doc_info_tags.hpp
1 /*=============================================================================
2 Copyright (c) 2011 Daniel James
3
4 Use, modification and distribution is subject to the Boost Software
5 License, Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at
6 http://www.boost.org/LICENSE_1_0.txt)
7 =============================================================================*/
8
9 #if !defined(BOOST_SPIRIT_QUICKBOOK_DOC_INFO_TAGS_HPP)
10 #define BOOST_SPIRIT_QUICKBOOK_DOC_INFO_TAGS_HPP
11
12 #include "value_tags.hpp"
13
14 namespace quickbook
15 {
16 QUICKBOOK_VALUE_TAGS(doc_info_tags, 0x400,
17 (before_docinfo)
18 (type)
19 (title)
20 (author_surname)(author_first)
21 (copyright_year)(copyright_year_end)(copyright_name)
22 (license)
23 (biblioid_class)(biblioid_value)
24 (escaped_attribute)
25 )
26
27 QUICKBOOK_VALUE_NAMED_TAGS(doc_attributes, 0x440,
28 ((qbk_version)("quickbook"))
29 ((compatibility_mode)("compatibility-mode"))
30 ((source_mode)("source-mode"))
31 )
32
33 QUICKBOOK_VALUE_NAMED_TAGS(doc_info_attributes, 0x450,
34 ((id)("id"))
35 ((dirname)("dirname"))
36 ((last_revision)("last-revision"))
37 ((purpose)("purpose"))
38 ((category)("category"))
39 ((lang)("lang"))
40 ((version)("version"))
41 ((authors)("authors"))
42 ((copyright)("copyright"))
43 ((license)("license"))
44 ((biblioid)("biblioid"))
45 ((xmlbase)("xmlbase"))
46 )
47 }
48
49 #endif