]> git.proxmox.com Git - ceph.git/blob - ceph/src/boost/libs/spirit/include/boost/spirit/home/x3/char/char_class_tags.hpp
bump version to 12.2.2-pve1
[ceph.git] / ceph / src / boost / libs / spirit / include / boost / spirit / home / x3 / char / char_class_tags.hpp
1 /*=============================================================================
2 Copyright (c) 2001-2014 Joel de Guzman
3
4 Distributed under the Boost Software License, Version 1.0. (See accompanying
5 file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
6 ==============================================================================*/
7 #if !defined(BOOST_SPIRIT_X3_CHAR_CLASS_TAGS_APRIL_16_2006_1051AM)
8 #define BOOST_SPIRIT_X3_CHAR_CLASS_TAGS_APRIL_16_2006_1051AM
9
10
11 namespace boost { namespace spirit { namespace x3
12 {
13 ///////////////////////////////////////////////////////////////////////////
14 struct char_tag {};
15 struct alnum_tag {};
16 struct alpha_tag {};
17 struct blank_tag {};
18 struct cntrl_tag {};
19 struct digit_tag {};
20 struct graph_tag {};
21 struct print_tag {};
22 struct punct_tag {};
23 struct space_tag {};
24 struct xdigit_tag {};
25 struct lower_tag {};
26 struct upper_tag {};
27 }}}
28
29 #endif