diff options
| author | Alan Conway <aconway@apache.org> | 2007-08-21 21:52:31 +0000 |
|---|---|---|
| committer | Alan Conway <aconway@apache.org> | 2007-08-21 21:52:31 +0000 |
| commit | a9bd6d6e8686574d0170248ccd0280ec21dd67c3 (patch) | |
| tree | 0d4bf61b6316933ca2e42ade1fad03cf75899783 /cpp/src/qpid/framing/AMQMethodBody.cpp | |
| parent | f3737cf4414656f9804dde96271ef426523df050 (diff) | |
| download | qpid-python-a9bd6d6e8686574d0170248ccd0280ec21dd67c3.tar.gz | |
Undo revision 568249, causing tests to hang.
------------------------------------------------------------------------
r568249 | gsim | 2007-08-21 16:11:20 -0400 (Tue, 21 Aug 2007) | 3 lines
Invocation now uses the visitor mechanism
------------------------------------------------------------------------
git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk/qpid@568298 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'cpp/src/qpid/framing/AMQMethodBody.cpp')
| -rw-r--r-- | cpp/src/qpid/framing/AMQMethodBody.cpp | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/cpp/src/qpid/framing/AMQMethodBody.cpp b/cpp/src/qpid/framing/AMQMethodBody.cpp index 48b50763fc..924d906d43 100644 --- a/cpp/src/qpid/framing/AMQMethodBody.cpp +++ b/cpp/src/qpid/framing/AMQMethodBody.cpp @@ -19,25 +19,10 @@ * */ #include "AMQMethodBody.h" -#include "qpid/framing/InvocationVisitor.h" namespace qpid { namespace framing { AMQMethodBody::~AMQMethodBody() {} -void AMQMethodBody::invoke(AMQP_ServerOperations& ops) -{ - InvocationVisitor v(&ops); - accept(v); - assert(v.wasHandled()); -} - -bool AMQMethodBody::invoke(Invocable* invocable) -{ - InvocationVisitor v(invocable); - accept(v); - return v.wasHandled(); -} - }} // namespace qpid::framing |
