#include <visitable_object.hpp>
Inheritance diagram for ph::common::const_member_visitor:
This class represents the "Visitor" in the "Visitor" pattern.
Definition at line 97 of file visitable_object.hpp.
Public Member Functions | |
virtual | ~const_member_visitor () |
virtual bool | visit (const object_base *obj, const std::string &name, const member_base *member)=0 |
|
Definition at line 106 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::common::get_member_value_visitor, and dump_member_visitor. Referenced by reflect_test::c_base::accept(), and reflect_test::base::accept(). |