mirror of
https://github.com/boostorg/python.git
synced 2026-07-23 13:53:57 +00:00
655868d803
[SVN r25742]
80 lines
2.1 KiB
C++
Executable File
80 lines
2.1 KiB
C++
Executable File
// 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)
|
|
#ifndef OBJECT_PROTOCOL_DWA2002615_HPP
|
|
# define OBJECT_PROTOCOL_DWA2002615_HPP
|
|
|
|
# include <boost/python/detail/prefix.hpp>
|
|
|
|
# include <boost/python/object_protocol_core.hpp>
|
|
# include <boost/python/object_core.hpp>
|
|
|
|
namespace boost { namespace python { namespace api {
|
|
|
|
template <class Target, class Key>
|
|
object getattr(Target const& target, Key const& key)
|
|
{
|
|
return getattr(object(target), object(key));
|
|
}
|
|
|
|
template <class Target, class Key, class Default>
|
|
object getattr(Target const& target, Key const& key, Default const& default_)
|
|
{
|
|
return getattr(object(target), object(key), object(default_));
|
|
}
|
|
|
|
|
|
template <class Key, class Value>
|
|
void setattr(object const& target, Key const& key, Value const& value)
|
|
{
|
|
setattr(target, object(key), object(value));
|
|
}
|
|
|
|
template <class Key>
|
|
void delattr(object const& target, Key const& key)
|
|
{
|
|
delattr(target, object(key));
|
|
}
|
|
|
|
template <class Target, class Key>
|
|
object getitem(Target const& target, Key const& key)
|
|
{
|
|
return getitem(object(target), object(key));
|
|
}
|
|
|
|
|
|
template <class Key, class Value>
|
|
void setitem(object const& target, Key const& key, Value const& value)
|
|
{
|
|
setitem(target, object(key), object(value));
|
|
}
|
|
|
|
template <class Key>
|
|
void delitem(object const& target, Key const& key)
|
|
{
|
|
delitem(target, object(key));
|
|
}
|
|
|
|
template <class Target, class Begin, class End>
|
|
object getslice(Target const& target, Begin const& begin, End const& end)
|
|
{
|
|
return getslice(object(target), object(begin), object(end));
|
|
}
|
|
|
|
template <class Begin, class End, class Value>
|
|
void setslice(object const& target, Begin const& begin, End const& end, Value const& value)
|
|
{
|
|
setslice(target, object(begin), object(end), object(value));
|
|
}
|
|
|
|
template <class Begin, class End>
|
|
void delslice(object const& target, Begin const& begin, End const& end)
|
|
{
|
|
delslice(target, object(begin), object(end));
|
|
}
|
|
|
|
}}} // namespace boost::python::api
|
|
|
|
#endif // OBJECT_PROTOCOL_DWA2002615_HPP
|