| Apache Qpid - AMQP Messaging for Java JMS, C++, Python, Ruby, and .NET | Apache Qpid Documentation |
#include <Visitor.h>
Public Types | |
| typedef R | ReturnType |
| typedef T | VisitType |
Public Member Functions | |
| virtual | ~Visit () |
| virtual R | visit (T &)=0 |
) To create a visitor for a set of types T1, T2 ... do this: struct MyVisitor : public Visit<T1>, public Visit<T2> ... {};
| T | Type to visit. This must be forward declared, and need not be defined. |
Definition at line 38 of file Visitor.h.
| typedef R qpid::framing::Visit< T, R >::ReturnType |
| typedef T qpid::framing::Visit< T, R >::VisitType |
| virtual qpid::framing::Visit< T, R >::~Visit | ( | ) | [inline, virtual] |
| virtual R qpid::framing::Visit< T, R >::visit | ( | T & | ) | [pure virtual] |
1.5.7.1