source: NonGTP/Boost/boost/multi_index/detail/index_iterator_fwd.hpp @ 857

Revision 857, 998 bytes checked in by igarcia, 18 years ago (diff)
Line 
1/* Copyright 2003-2005 Joaquín M López Muñoz.
2 * Distributed under the Boost Software License, Version 1.0.
3 * (See accompanying file LICENSE_1_0.txt or copy at
4 * http://www.boost.org/LICENSE_1_0.txt)
5 *
6 * See http://www.boost.org/libs/multi_index for library home page.
7 */
8
9#ifndef BOOST_MULTI_INDEX_DETAIL_INDEX_ITERATOR_FWD_HPP
10#define BOOST_MULTI_INDEX_DETAIL_INDEX_ITERATOR_FWD_HPP
11
12#if defined(_MSC_VER)&&(_MSC_VER>=1200)
13#pragma once
14#endif
15
16#include <boost/config.hpp>
17#include <boost/detail/workaround.hpp>
18
19namespace boost{
20
21namespace multi_index{
22
23namespace detail{
24
25#if defined(BOOST_MULTI_INDEX_ENABLE_SAFE_MODE)
26#if BOOST_WORKAROUND(BOOST_MSVC,<1300)
27template<typename Node>
28class index_iterator;
29#else
30template<typename Node,typename Container>
31class index_iterator;
32#endif
33#else
34template<typename Node>
35class index_iterator;
36#endif
37
38} /* namespace multi_index::detail */
39
40} /* namespace multi_index */
41
42} /* namespace boost */
43
44#endif
Note: See TracBrowser for help on using the repository browser.