12345678910111213141516171819202122 |
- #ifndef SHARED_PTR_DELETER_DWA2002121_HPP
- # define SHARED_PTR_DELETER_DWA2002121_HPP
- namespace boost { namespace python { namespace converter {
- struct BOOST_PYTHON_DECL shared_ptr_deleter
- {
- shared_ptr_deleter(handle<> owner);
- ~shared_ptr_deleter();
- void operator()(void const*);
-
- handle<> owner;
- };
- }}}
- #endif
|