1234567891011121314151617181920212223242526272829303132333435 |
- #ifndef ASIO_DETAIL_REGEX_FWD_HPP
- #define ASIO_DETAIL_REGEX_FWD_HPP
- #if defined(_MSC_VER) && (_MSC_VER >= 1200)
- # pragma once
- #endif
- #if defined(ASIO_HAS_BOOST_REGEX)
- namespace boost {
- template <class BidiIterator>
- struct sub_match;
- template <class BidiIterator, class Allocator>
- class match_results;
- template <class CharT, class Traits>
- class basic_regex;
- }
- #endif
- #endif
|