summaryrefslogtreecommitdiff
path: root/cpp/src/qpid/framing
diff options
context:
space:
mode:
authorAlan Conway <aconway@apache.org>2009-05-06 12:44:35 +0000
committerAlan Conway <aconway@apache.org>2009-05-06 12:44:35 +0000
commit5d89f0791bec9417c3dc59a1903a17a1f7e78e52 (patch)
treee9a3380010d27a136c5bf9164d1b0e87c78f5227 /cpp/src/qpid/framing
parentce5bcdea89da659e34bbddf3263c761d495f3386 (diff)
downloadqpid-python-5d89f0791bec9417c3dc59a1903a17a1f7e78e52.tar.gz
Remove client::Execution and FrameSet from the public API.
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@772182 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'cpp/src/qpid/framing')
-rw-r--r--cpp/src/qpid/framing/AMQHeaderBody.h2
-rw-r--r--cpp/src/qpid/framing/amqp_types.h3
2 files changed, 3 insertions, 2 deletions
diff --git a/cpp/src/qpid/framing/AMQHeaderBody.h b/cpp/src/qpid/framing/AMQHeaderBody.h
index b8099f2e51..8c72683b1a 100644
--- a/cpp/src/qpid/framing/AMQHeaderBody.h
+++ b/cpp/src/qpid/framing/AMQHeaderBody.h
@@ -35,8 +35,6 @@
namespace qpid {
namespace framing {
-enum DeliveryMode { TRANSIENT = 1, PERSISTENT = 2};
-
class AMQHeaderBody : public AMQBody
{
template <class T> struct OptProps { boost::optional<T> props; };
diff --git a/cpp/src/qpid/framing/amqp_types.h b/cpp/src/qpid/framing/amqp_types.h
index 97b889a7ca..0cc2e80dce 100644
--- a/cpp/src/qpid/framing/amqp_types.h
+++ b/cpp/src/qpid/framing/amqp_types.h
@@ -59,5 +59,8 @@ class SequenceNumberSet;
class SequenceSet;
struct Uuid;
+// Enum types
+enum DeliveryMode { TRANSIENT = 1, PERSISTENT = 2};
+
}} // namespace qpid::framing
#endif