source: NonGTP/Boost/boost/python/converter/shared_ptr_deleter.hpp @ 857

Revision 857, 627 bytes checked in by igarcia, 18 years ago (diff)
Line 
1// Copyright David Abrahams 2002.
2// Distributed under the Boost Software License, Version 1.0. (See
3// accompanying file LICENSE_1_0.txt or copy at
4// http://www.boost.org/LICENSE_1_0.txt)
5#ifndef SHARED_PTR_DELETER_DWA2002121_HPP
6# define SHARED_PTR_DELETER_DWA2002121_HPP
7
8namespace boost { namespace python { namespace converter {
9
10struct BOOST_PYTHON_DECL shared_ptr_deleter
11{
12    shared_ptr_deleter(handle<> owner);
13    ~shared_ptr_deleter();
14
15    void operator()(void const*);
16       
17    handle<> owner;
18};
19
20}}} // namespace boost::python::converter
21
22#endif // SHARED_PTR_DELETER_DWA2002121_HPP
Note: See TracBrowser for help on using the repository browser.