summaryrefslogtreecommitdiff
path: root/tools/quickbook/src/template_tags.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'tools/quickbook/src/template_tags.hpp')
-rw-r--r--tools/quickbook/src/template_tags.hpp26
1 files changed, 26 insertions, 0 deletions
diff --git a/tools/quickbook/src/template_tags.hpp b/tools/quickbook/src/template_tags.hpp
new file mode 100644
index 0000000000..a47158dae6
--- /dev/null
+++ b/tools/quickbook/src/template_tags.hpp
@@ -0,0 +1,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