From 7f5bd33ead6af9c88618d4470b61737702da5ea5 Mon Sep 17 00:00:00 2001 From: Joel de Guzman Date: Wed, 27 Aug 2003 10:14:14 +0000 Subject: [PATCH] Tweaks [SVN r19802] --- doc/v2/def_visitor.html | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/doc/v2/def_visitor.html b/doc/v2/def_visitor.html index 91361a25..644830f0 100644 --- a/doc/v2/def_visitor.html +++ b/doc/v2/def_visitor.html @@ -120,8 +120,9 @@ void visit(classT& c, char const* name, OptionalArgs const& options) con being wrapped to Python. name is a client supplied name. This is a client supplied function.
Effects: A call to c.def(name, visitor) or c.def(name, visitor, options), - where c is a class_ instance and visitor is a def_visitor derived class forwards - to this visitor's visit member function. + where c is a class_ instance, visitor is a def_visitor derived class and options + are context specific optional arguments, forwards to this visitor's visit + member function.
Rationale: Allows my_def_visitor to non-intrusively add functionality to the class_ def member function.