Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: downloads/boost_1_34_1/boost/python/object/add_to_namespace.hpp @ 33

Last change on this file since 33 was 29, checked in by landauf, 17 years ago

updated boost from 1_33_1 to 1_34_1

File size: 780 bytes
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 ADD_TO_NAMESPACE_DWA200286_HPP
6# define ADD_TO_NAMESPACE_DWA200286_HPP
7
8# include <boost/python/object_fwd.hpp>
9
10namespace boost { namespace python { namespace objects { 
11
12//
13// A setattr that's "smart" about function overloading (and docstrings).
14//
15BOOST_PYTHON_DECL void add_to_namespace(
16    object const& name_space, char const* name, object const& attribute);
17
18BOOST_PYTHON_DECL void add_to_namespace(
19    object const& name_space, char const* name, object const& attribute, char const* doc);
20
21}}} // namespace boost::python::objects
22
23#endif // ADD_TO_NAMESPACE_DWA200286_HPP
Note: See TracBrowser for help on using the repository browser.