]> git.proxmox.com Git - ceph.git/blob - ceph/src/boost/libs/metaparse/include/boost/metaparse/v1/digit_val.hpp
add subtree-ish sources for 12.0.3
[ceph.git] / ceph / src / boost / libs / metaparse / include / boost / metaparse / v1 / digit_val.hpp
1 #ifndef BOOST_METAPARSE_V1_DIGIT_VAL_HPP
2 #define BOOST_METAPARSE_V1_DIGIT_VAL_HPP
3
4 // Copyright Abel Sinkovics (abel@sinkovics.hu) 2009 - 2010.
5 // Distributed under the Boost Software License, Version 1.0.
6 // (See accompanying file LICENSE_1_0.txt or copy at
7 // http://www.boost.org/LICENSE_1_0.txt)
8
9 #include <boost/metaparse/v1/digit.hpp>
10 #include <boost/metaparse/v1/transform.hpp>
11
12 #include <boost/metaparse/v1/util/digit_to_int.hpp>
13
14 namespace boost
15 {
16 namespace metaparse
17 {
18 namespace v1
19 {
20 typedef transform<digit, util::digit_to_int<> > digit_val;
21 }
22 }
23 }
24
25 #endif
26