source: NonGTP/Boost/boost/multi_index/sequenced_index_fwd.hpp @ 857

Revision 857, 2.2 KB 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_SEQUENCED_INDEX_FWD_HPP
10#define BOOST_MULTI_INDEX_SEQUENCED_INDEX_FWD_HPP
11
12#if defined(_MSC_VER)&&(_MSC_VER>=1200)
13#pragma once
14#endif
15
16#include <boost/multi_index/tag.hpp>
17
18namespace boost{
19
20namespace multi_index{
21
22namespace detail{
23
24template<typename SuperMeta,typename TagList>
25class sequenced_index;
26
27template<
28  typename SuperMeta1,typename TagList1,
29  typename SuperMeta2,typename TagList2
30>
31bool operator==(
32  const sequenced_index<SuperMeta1,TagList1>& x,
33  const sequenced_index<SuperMeta2,TagList2>& y);
34
35template<
36  typename SuperMeta1,typename TagList1,
37  typename SuperMeta2,typename TagList2
38>
39bool operator<(
40  const sequenced_index<SuperMeta1,TagList1>& x,
41  const sequenced_index<SuperMeta2,TagList2>& y);
42
43template<
44  typename SuperMeta1,typename TagList1,
45  typename SuperMeta2,typename TagList2
46>
47bool operator!=(
48  const sequenced_index<SuperMeta1,TagList1>& x,
49  const sequenced_index<SuperMeta2,TagList2>& y);
50
51template<
52  typename SuperMeta1,typename TagList1,
53  typename SuperMeta2,typename TagList2
54>
55bool operator>(
56  const sequenced_index<SuperMeta1,TagList1>& x,
57  const sequenced_index<SuperMeta2,TagList2>& y);
58
59template<
60  typename SuperMeta1,typename TagList1,
61  typename SuperMeta2,typename TagList2
62>
63bool operator>=(
64  const sequenced_index<SuperMeta1,TagList1>& x,
65  const sequenced_index<SuperMeta2,TagList2>& y);
66
67template<
68  typename SuperMeta1,typename TagList1,
69  typename SuperMeta2,typename TagList2
70>
71bool operator<=(
72  const sequenced_index<SuperMeta1,TagList1>& x,
73  const sequenced_index<SuperMeta2,TagList2>& y);
74
75template<typename SuperMeta,typename TagList>
76void swap(
77  sequenced_index<SuperMeta,TagList>& x,
78  sequenced_index<SuperMeta,TagList>& y);
79
80} /* namespace multi_index::detail */
81
82/* index specifiers */
83
84template <typename TagList=tag<> >
85struct sequenced;
86
87} /* namespace multi_index */
88
89} /* namespace boost */
90
91#endif
Note: See TracBrowser for help on using the repository browser.