| 1 | /*============================================================================= |
|---|---|
| 2 | Copyright (c) 2006 Tobias Schwinger |
| 3 | http://spirit.sourceforge.net/ |
| 4 | |
| 5 | Distributed under the Boost Software License, Version 1.0. (See accompanying |
| 6 | file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) |
| 7 | =============================================================================*/ |
| 8 | |
| 9 | #if !defined(BOOST_SPIRIT_FILE_ITERATOR_FWD_HPP) |
| 10 | #define BOOST_SPIRIT_FILE_ITERATOR_FWD_HPP |
| 11 | |
| 12 | #include <boost/spirit/home/classic/namespace.hpp> |
| 13 | |
| 14 | namespace boost { namespace spirit { |
| 15 | |
| 16 | BOOST_SPIRIT_CLASSIC_NAMESPACE_BEGIN |
| 17 | |
| 18 | namespace fileiter_impl |
| 19 | { |
| 20 | template <typename CharT = char> |
| 21 | class std_file_iterator; |
| 22 | |
| 23 | // may never be defined -- so what... |
| 24 | template <typename CharT = char> |
| 25 | class mmap_file_iterator; |
| 26 | } |
| 27 | |
| 28 | // no defaults here -- too much dependencies |
| 29 | template < |
| 30 | typename CharT, |
| 31 | typename BaseIterator |
| 32 | > class file_iterator; |
| 33 | |
| 34 | BOOST_SPIRIT_CLASSIC_NAMESPACE_END |
| 35 | |
| 36 | }} // namespace BOOST_SPIRIT_CLASSIC_NS |
| 37 | |
| 38 | #endif |
| 39 | |
| 40 |
