From a86deed5f65e68baabae6a25ea60f8ba1be87217 Mon Sep 17 00:00:00 2001 From: Dave Abrahams Date: Wed, 2 Apr 2003 12:57:33 +0000 Subject: [PATCH] dummy [SVN r18158] --- include/boost/python/object/class.hpp | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/include/boost/python/object/class.hpp b/include/boost/python/object/class.hpp index 78cf06b5..44e03a54 100644 --- a/include/boost/python/object/class.hpp +++ b/include/boost/python/object/class.hpp @@ -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