A simple introspection interface to visit PropertyBags. More...
#include <rtt/PropertyIntrospection.hpp>
Public Member Functions | |
virtual void | introspect (PropertyBase *p)=0 |
Callback for a Property which is not a PropertyBag. | |
virtual void | introspect (Property< PropertyBag > &p)=0 |
Callback for a Property which is a PropertyBag. |
A simple introspection interface to visit PropertyBags.
A class which implements this interface can call bag.identify( this );
. For each property, introspect(PropertyBase* p) is called, unless the property contains a bag, then introspect(Property<PropertyBag>& p) is called, upon which you may call identify again on it's value(). The marshallers use this technique.
Definition at line 64 of file PropertyIntrospection.hpp.