other.hpp 947 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. #ifndef OTHER_DWA20020601_HPP
  2. # define OTHER_DWA20020601_HPP
  3. # include <boost/python/detail/prefix.hpp>
  4. // Copyright David Abrahams 2002.
  5. // Distributed under the Boost Software License, Version 1.0. (See
  6. // accompanying file LICENSE_1_0.txt or copy at
  7. // http://www.boost.org/LICENSE_1_0.txt)
  8. # pragma once
  9. # include <boost/config.hpp>
  10. namespace boost { namespace python {
  11. template<class T> struct other
  12. {
  13. typedef T type;
  14. };
  15. namespace detail
  16. {
  17. template<typename T>
  18. class is_other
  19. {
  20. public:
  21. BOOST_STATIC_CONSTANT(bool, value = false);
  22. };
  23. template<typename T>
  24. class is_other<other<T> >
  25. {
  26. public:
  27. BOOST_STATIC_CONSTANT(bool, value = true);
  28. };
  29. template<typename T>
  30. class unwrap_other
  31. {
  32. public:
  33. typedef T type;
  34. };
  35. template<typename T>
  36. class unwrap_other<other<T> >
  37. {
  38. public:
  39. typedef T type;
  40. };
  41. }
  42. }} // namespace boost::python
  43. #endif // #ifndef OTHER_DWA20020601_HPP