summaryrefslogtreecommitdiff
path: root/cpp/src/qpid/framing
diff options
context:
space:
mode:
authorGordon Sim <gsim@apache.org>2008-03-06 11:44:36 +0000
committerGordon Sim <gsim@apache.org>2008-03-06 11:44:36 +0000
commitb7c474ea80fce5d53236aeea9f74c9107da0152d (patch)
tree6d0a36c807c309cdebe3ba18dfe4c0bbbb75bfb8 /cpp/src/qpid/framing
parent7e162fa97ef0d430714b9630121a055fe5adece9 (diff)
downloadqpid-python-b7c474ea80fce5d53236aeea9f74c9107da0152d.tar.gz
Fix message delivery for 0-10 final codepath
Convert two more python tests to use 0-10 client git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk/qpid@634229 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'cpp/src/qpid/framing')
-rw-r--r--cpp/src/qpid/framing/AMQHeaderBody.h8
1 files changed, 6 insertions, 2 deletions
diff --git a/cpp/src/qpid/framing/AMQHeaderBody.h b/cpp/src/qpid/framing/AMQHeaderBody.h
index 96bd396330..8a3a92936e 100644
--- a/cpp/src/qpid/framing/AMQHeaderBody.h
+++ b/cpp/src/qpid/framing/AMQHeaderBody.h
@@ -26,6 +26,8 @@
#include "Buffer.h"
#include "qpid/framing/DeliveryProperties.h"
#include "qpid/framing/MessageProperties.h"
+#include "qpid/framing/DeliveryProperties010.h"
+#include "qpid/framing/MessageProperties010.h"
#include <iostream>
#include <boost/optional.hpp>
@@ -75,8 +77,10 @@ class AMQHeaderBody : public AMQBody
};
// Could use boost::mpl::fold to construct a larger set.
- typedef PropSet<PropSet<Empty, DeliveryProperties>,
- MessageProperties> Properties;
+ typedef PropSet< PropSet< PropSet<PropSet<Empty, DeliveryProperties>,
+ MessageProperties>,
+ DeliveryProperties010>,
+ MessageProperties010> Properties;
Properties properties;