#include <visitable_object.hpp>
Inheritance diagram for ph::common::member_visitor:
This class represents the "Visitor" in the "Visitor" pattern.
Definition at line 80 of file visitable_object.hpp.
Public Member Functions | |
virtual | ~member_visitor () |
virtual bool | visit (object_base *obj, const std::string &name, member_base *member)=0 |
|
Definition at line 88 of file visitable_object.hpp. |
|
Visit the member passing the name of it, a member base class which can be used to convert to/from a string, and the actual parent object. Implemented in ph::reflect::set_member_visitor. Referenced by reflect_test::c_base::accept(), and reflect_test::base::accept(). |