12345678910111213141516171819202122232425 |
- #ifndef BOOST_METAPARSE_V1_ALPHANUM_HPP
- #define BOOST_METAPARSE_V1_ALPHANUM_HPP
- #include <boost/metaparse/v1/one_of.hpp>
- #include <boost/metaparse/v1/digit.hpp>
- #include <boost/metaparse/v1/letter.hpp>
- namespace boost
- {
- namespace metaparse
- {
- namespace v1
- {
- typedef one_of<letter, digit> alphanum;
- }
- }
- }
- #endif
|