summaryrefslogtreecommitdiff
path: root/tools/quickbook/src/block_tags.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'tools/quickbook/src/block_tags.hpp')
-rw-r--r--tools/quickbook/src/block_tags.hpp40
1 files changed, 40 insertions, 0 deletions
diff --git a/tools/quickbook/src/block_tags.hpp b/tools/quickbook/src/block_tags.hpp
new file mode 100644
index 0000000000..b01271fc0b
--- /dev/null
+++ b/tools/quickbook/src/block_tags.hpp
@@ -0,0 +1,40 @@
+/*=============================================================================
+ 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_TABLE_TAGS_HPP)
+#define BOOST_SPIRIT_QUICKBOOK_TABLE_TAGS_HPP
+
+#include "value_tags.hpp"
+
+namespace quickbook
+{
+ QUICKBOOK_VALUE_TAGS(block_tags, 0x200,
+ (begin_section)(end_section)
+ (generic_heading)
+ (heading1)(heading2)(heading3)(heading4)(heading5)(heading6)
+ (blurb)(blockquote)(preformatted)
+ (warning)(caution)(important)(note)(tip)(block)
+ (macro_definition)(template_definition)
+ (variable_list)(table)
+ (xinclude)(import)(include)
+ (paragraph)
+ (ordered_list)(itemized_list)
+ (hr)
+ )
+
+ QUICKBOOK_VALUE_TAGS(table_tags, 0x250,
+ (title)(row)
+ )
+
+ QUICKBOOK_VALUE_TAGS(general_tags, 0x300,
+ (element_id)(include_id)(list_indent)(list_mark)
+ )
+
+}
+
+#endif