00001 #ifndef AMQP_TYPES_H
00002 #define AMQP_TYPES_H
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00029 #include "qpid/sys/IntegerTypes.h"
00030 #include <string>
00031
00032 namespace qpid {
00033 namespace framing {
00034
00035 using std::string;
00036 typedef uint8_t FrameType;
00037 typedef uint16_t ChannelId;
00038 typedef uint32_t BatchOffset;
00039 typedef uint8_t ClassId;
00040 typedef uint8_t MethodId;
00041 typedef uint16_t ReplyCode;
00042
00043
00044 class Content;
00045 class FieldTable;
00046 class SequenceNumberSet;
00047 struct Uuid;
00048
00049
00050
00052 const ChannelId CHANNEL_MAX=(ChannelId(~1))>>1;
00053 const ChannelId CHANNEL_HIGH_BIT= ChannelId(~CHANNEL_MAX);
00054
00055
00056 class FramingContent;
00057 class FieldTable;
00058 class SequenceNumberSet;
00059 class SequenceSet;
00060 struct Uuid;
00061
00062 }}
00063 #endif