OMNeT++ Simulation Library
5.6.1
|
#include <cvisitor.h>
Enables traversing the tree of (cObject-rooted) simulation objects.
Subclasses should redefine the visit() method and add the desired functionality.
An example: the cRecursiveObjectFinderVisitor class (internal) has been created to find an object of the given name. The constructor accepts the name of the object to search for, and visit() has been redefined to perform recursive traversal, and to throw EndTraversalException if it finds the given object. The class can be used like this:
The above code will find the root object as well, if its name matches. The second version (below) starts the traversal at the children, so the root object is ignored.
Classes | |
class | EndTraversalException |
Can be thrown to get out in the middle of the traversal process. More... | |
Public Member Functions | |
virtual | ~cVisitor () |
virtual bool | process (cObject *obj) |
virtual bool | processChildrenOf (cObject *obj) |
virtual void | visit (cObject *obj)=0 |
|
inlinevirtual |
Virtual destructor.
|
virtual |
Starts the visiting process. This version simply calls visit(obj), and catches EndTraversalException if one occurs. Return value is true if traversal went through and false if EndTraversalException was caught.
|
virtual |
Similar to process(), except that it skips the object itself, i.e. it begins with processing the children. Calls obj->forEachChild(this), and catches EndTraversalException if one occurs. Return value is true if traversal went through and false if EndTraversalException was caught.
|
pure virtual |
Method called from the forEachChild() methods of every class derived from cObject, for each contained object. visit() should be redefined by user to encapsulate the operation to be performed on the object. If you want recursively traversal, call obj->forEachChild(this) from here.
This method should NOT be called to to initiate the traversal – use process() or processChildrenOf() for that.