Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2025-01-18 09:42:11

0001 /* Copyright 2003-2015 Joaquin M Lopez Munoz.
0002  * Distributed under the Boost Software License, Version 1.0.
0003  * (See accompanying file LICENSE_1_0.txt or copy at
0004  * http://www.boost.org/LICENSE_1_0.txt)
0005  *
0006  * See http://www.boost.org/libs/multi_index for library home page.
0007  */
0008 
0009 #ifndef BOOST_MULTI_INDEX_RANKED_INDEX_FWD_HPP
0010 #define BOOST_MULTI_INDEX_RANKED_INDEX_FWD_HPP
0011 
0012 #if defined(_MSC_VER)
0013 #pragma once
0014 #endif
0015 
0016 #include <boost/multi_index/detail/ord_index_args.hpp>
0017 #include <boost/multi_index/detail/ord_index_impl_fwd.hpp>
0018 
0019 namespace boost{
0020 
0021 namespace multi_index{
0022 
0023 /* ranked_index specifiers */
0024 
0025 template<typename Arg1,typename Arg2=mpl::na,typename Arg3=mpl::na>
0026 struct ranked_unique;
0027 
0028 template<typename Arg1,typename Arg2=mpl::na,typename Arg3=mpl::na>
0029 struct ranked_non_unique;
0030 
0031 } /* namespace multi_index */
0032 
0033 } /* namespace boost */
0034 
0035 #endif