select_holder.cpp

来自「Boost provides free peer-reviewed portab」· C++ 代码 · 共 77 行

CPP
77
字号
// Copyright David Abrahams 2002.// Distributed under the Boost Software License, Version 1.0. (See// accompanying file LICENSE_1_0.txt or copy at// http://www.boost.org/LICENSE_1_0.txt)#include <boost/python/object/class_metadata.hpp>#include <boost/python/has_back_reference.hpp>#include <boost/python/detail/not_specified.hpp>#include <boost/static_assert.hpp>#include <boost/type_traits/same_traits.hpp>#include <boost/function/function0.hpp>#include <boost/mpl/bool.hpp>#include <memory>struct BR {};struct Base {};struct Derived : Base {};namespace boost { namespace python{  // specialization  template <>  struct has_back_reference<BR>    : mpl::true_  {  };}} // namespace boost::pythontemplate <class T, class U>void assert_same(U* = 0, T* = 0){    BOOST_STATIC_ASSERT((boost::is_same<T,U>::value));    }template <class T, class Held, class Holder>void assert_holder(T* = 0, Held* = 0, Holder* = 0){    using namespace boost::python::detail;    using namespace boost::python::objects;        typedef typename class_metadata<       T,Held,not_specified,not_specified           >::holder h;        assert_same<Holder>(        (h*)0    );}int test_main(int, char * []){    using namespace boost::python::detail;    using namespace boost::python::objects;    assert_holder<Base,not_specified,value_holder<Base> >();    assert_holder<BR,not_specified,value_holder_back_reference<BR,BR> >();    assert_holder<Base,Base,value_holder_back_reference<Base,Base> >();    assert_holder<BR,BR,value_holder_back_reference<BR,BR> >();    assert_holder<Base,Derived        ,value_holder_back_reference<Base,Derived> >();    assert_holder<Base,std::auto_ptr<Base>        ,pointer_holder<std::auto_ptr<Base>,Base> >();        assert_holder<Base,std::auto_ptr<Derived>        ,pointer_holder_back_reference<std::auto_ptr<Derived>,Base> >();    assert_holder<BR,std::auto_ptr<BR>        ,pointer_holder_back_reference<std::auto_ptr<BR>,BR> > ();    return 0;}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?