/Src/Dependencies/Boost/libs/unordered/test/exception/containers.hpp

http://hadesmem.googlecode.com/ · C++ Header · 33 lines · 26 code · 4 blank · 3 comment · 0 complexity · af16e56f67036e25e815d01ae64e3af8 MD5 · raw file

  1. // Copyright 2006-2009 Daniel James.
  2. // Distributed under the Boost Software License, Version 1.0. (See accompanying
  3. // file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
  4. #include <boost/unordered_map.hpp>
  5. #include <boost/unordered_set.hpp>
  6. #include "../objects/exception.hpp"
  7. typedef boost::unordered_set<
  8. test::exception::object,
  9. test::exception::hash,
  10. test::exception::equal_to,
  11. test::exception::allocator<test::exception::object> > test_set;
  12. typedef boost::unordered_multiset<
  13. test::exception::object,
  14. test::exception::hash,
  15. test::exception::equal_to,
  16. test::exception::allocator<test::exception::object> > test_multiset;
  17. typedef boost::unordered_map<
  18. test::exception::object,
  19. test::exception::object,
  20. test::exception::hash,
  21. test::exception::equal_to,
  22. test::exception::allocator<test::exception::object> > test_map;
  23. typedef boost::unordered_multimap<
  24. test::exception::object,
  25. test::exception::object,
  26. test::exception::hash,
  27. test::exception::equal_to,
  28. test::exception::allocator<test::exception::object> > test_multimap;
  29. #define CONTAINER_SEQ (test_set)(test_multiset)(test_map)(test_multimap)