InstructionVisitor

template<class T>
class InstructionVisitor

The InstructionVisitor provides a visit method for the provided template parameter.

Public Functions

virtual void visit(T&) = 0

This method should be implemented by subclasses to perform Visitor-specific behavior on the given instance of the template parameter T.

virtual ~InstructionVisitor()

The destructor