2
0
mirror of https://github.com/boostorg/python.git synced 2026-01-28 07:22:31 +00:00
[SVN r18158]
This commit is contained in:
Dave Abrahams
2003-04-02 12:57:33 +00:00
parent 3fd9ad7a60
commit a86deed5f6

View File

@@ -37,9 +37,13 @@ struct BOOST_PYTHON_DECL class_base : python::api::object
void enable_pickling(bool getstate_manages_dict);
protected:
// Retrieve the underlying object
void add_property(char const* name, object const& fget);
void add_property(char const* name, object const& fget, object const& fset);
void add_static_property(char const* name, object const& fget);
void add_static_property(char const* name, object const& fget, object const& fset);
// Retrieve the underlying object
void setattr(char const* name, object const&);
// Set a special attribute in the class which tells Boost.Python