]> git.proxmox.com Git - ceph.git/blame - ceph/src/boost/tools/quickbook/src/doc_info_tags.hpp
update sources to ceph Nautilus 14.2.1
[ceph.git] / ceph / src / boost / tools / quickbook / src / doc_info_tags.hpp
CommitLineData
7c673cae
FG
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
14namespace quickbook
15{
11fdf7f2
TL
16 // clang-format off
17
7c673cae
FG
18 QUICKBOOK_VALUE_TAGS(doc_info_tags, 0x400,
19 (before_docinfo)
20 (type)
21 (title)
22 (author_surname)(author_first)
23 (copyright_year)(copyright_year_end)(copyright_name)
24 (license)
25 (biblioid_class)(biblioid_value)
26 (escaped_attribute)
27 )
28
29 QUICKBOOK_VALUE_NAMED_TAGS(doc_attributes, 0x440,
30 ((qbk_version)("quickbook"))
31 ((compatibility_mode)("compatibility-mode"))
32 ((source_mode)("source-mode"))
33 )
34
35 QUICKBOOK_VALUE_NAMED_TAGS(doc_info_attributes, 0x450,
36 ((id)("id"))
37 ((dirname)("dirname"))
38 ((last_revision)("last-revision"))
39 ((purpose)("purpose"))
40 ((category)("category"))
41 ((lang)("lang"))
42 ((version)("version"))
43 ((authors)("authors"))
44 ((copyright)("copyright"))
45 ((license)("license"))
46 ((biblioid)("biblioid"))
47 ((xmlbase)("xmlbase"))
48 )
11fdf7f2
TL
49
50 // clang-format on
7c673cae
FG
51}
52
53#endif