/Src/Dependencies/Boost/boost/multi_index/hashed_index_fwd.hpp

http://hadesmem.googlecode.com/ · C++ Header · 58 lines · 35 code · 15 blank · 8 comment · 0 complexity · b55c82e71c0328c590ee7d095e4da4a8 MD5 · raw file

  1. /* Copyright 2003-2008 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_HASHED_INDEX_FWD_HPP
  9. #define BOOST_MULTI_INDEX_HASHED_INDEX_FWD_HPP
  10. #if defined(_MSC_VER)&&(_MSC_VER>=1200)
  11. #pragma once
  12. #endif
  13. #include <boost/multi_index/detail/hash_index_args.hpp>
  14. namespace boost{
  15. namespace multi_index{
  16. namespace detail{
  17. template<
  18. typename KeyFromValue,typename Hash,typename Pred,
  19. typename SuperMeta,typename TagList,typename Category
  20. >
  21. class hashed_index;
  22. template<
  23. typename KeyFromValue,typename Hash,typename Pred,
  24. typename SuperMeta,typename TagList,typename Category
  25. >
  26. void swap(
  27. hashed_index<KeyFromValue,Hash,Pred,SuperMeta,TagList,Category>& x,
  28. hashed_index<KeyFromValue,Hash,Pred,SuperMeta,TagList,Category>& y);
  29. } /* namespace multi_index::detail */
  30. /* hashed_index specifiers */
  31. template<
  32. typename Arg1,typename Arg2=mpl::na,
  33. typename Arg3=mpl::na,typename Arg4=mpl::na
  34. >
  35. struct hashed_unique;
  36. template<
  37. typename Arg1,typename Arg2=mpl::na,
  38. typename Arg3=mpl::na,typename Arg4=mpl::na
  39. >
  40. struct hashed_non_unique;
  41. } /* namespace multi_index */
  42. } /* namespace boost */
  43. #endif