summaryrefslogtreecommitdiff
path: root/cpp/src/qpid/framing
diff options
context:
space:
mode:
authorStephen D. Huston <shuston@apache.org>2008-10-02 20:12:38 +0000
committerStephen D. Huston <shuston@apache.org>2008-10-02 20:12:38 +0000
commitc88162272d7802103fa4bb8852a32b43673d8955 (patch)
tree4ef0ce4dbfc2b0e1cc22dd2f93599d3f53180e85 /cpp/src/qpid/framing
parent32716cfa7eb0edce0c7e7e4828f7122b369ebf4c (diff)
downloadqpid-python-c88162272d7802103fa4bb8852a32b43673d8955.tar.gz
Resolve QPID-1311
git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk/qpid@701231 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'cpp/src/qpid/framing')
-rw-r--r--cpp/src/qpid/framing/amqp_types.h15
1 files changed, 3 insertions, 12 deletions
diff --git a/cpp/src/qpid/framing/amqp_types.h b/cpp/src/qpid/framing/amqp_types.h
index 8b10aa3069..97b889a7ca 100644
--- a/cpp/src/qpid/framing/amqp_types.h
+++ b/cpp/src/qpid/framing/amqp_types.h
@@ -26,17 +26,8 @@
* in AMQP messages.
*/
+#include "qpid/sys/IntegerTypes.h"
#include <string>
-#ifdef _WINDOWS
-#include "windows.h"
-typedef unsigned char uint8_t;
-typedef unsigned short uint16_t;
-typedef unsigned int uint32_t;
-typedef unsigned __int64 uint64_t;
-#endif
-#ifndef _WINDOWS
-#include <stdint.h>
-#endif
namespace qpid {
namespace framing {
@@ -53,7 +44,7 @@ typedef uint16_t ReplyCode;
class Content;
class FieldTable;
class SequenceNumberSet;
-class Uuid;
+struct Uuid;
// Useful constants
@@ -66,7 +57,7 @@ class FramingContent;
class FieldTable;
class SequenceNumberSet;
class SequenceSet;
-class Uuid;
+struct Uuid;
}} // namespace qpid::framing
#endif