2
0
mirror of https://github.com/boostorg/python.git synced 2026-01-27 07:02:15 +00:00
Files
python/src/converter/body.cpp
Dave Abrahams 946ed17ae1 initial checkin
[SVN r12075]
2001-12-16 18:18:58 +00:00

19 lines
724 B
C++

// Copyright David Abrahams 2001. Permission to copy, use,
// modify, sell and distribute this software is granted provided this
// copyright notice appears in all copies. This software is provided
// "as is" without express or implied warranty, and with no claim as
// to its suitability for any purpose.
#include <boost/python/converter/body.hpp>
namespace boost { namespace python { namespace converter {
// default implementation is a no-op. Most handles will not hold any
// data that needs to be managed. Unwrap objects which convert
// by-value are an exception. Fortunately, the concrete body subclass
// has that knowledge.
void body::destroy_handle(handle*) const
{
}
}}} // namespace boost::python::converter