ranked_index_fwd.hpp 853 B

1234567891011121314151617181920212223242526272829303132333435
  1. /* Copyright 2003-2015 Joaquin M Lopez Munoz.
  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. #ifndef BOOST_MULTI_INDEX_RANKED_INDEX_FWD_HPP
  9. #define BOOST_MULTI_INDEX_RANKED_INDEX_FWD_HPP
  10. #if defined(_MSC_VER)
  11. #pragma once
  12. #endif
  13. #include <boost/multi_index/detail/ord_index_args.hpp>
  14. #include <boost/multi_index/detail/ord_index_impl_fwd.hpp>
  15. namespace boost{
  16. namespace multi_index{
  17. /* ranked_index specifiers */
  18. template<typename Arg1,typename Arg2=mpl::na,typename Arg3=mpl::na>
  19. struct ranked_unique;
  20. template<typename Arg1,typename Arg2=mpl::na,typename Arg3=mpl::na>
  21. struct ranked_non_unique;
  22. } /* namespace multi_index */
  23. } /* namespace boost */
  24. #endif