00001 #ifndef QPID_FRAMING_METHODBODYFACTORY_H
00002 #define QPID_FRAMING_METHODBODYFACTORY_H
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024 #include "amqp_types.h"
00025 #include <boost/intrusive_ptr.hpp>
00026
00027 namespace qpid {
00028 namespace framing {
00029
00030 class AMQMethodBody;
00031
00036 class MethodBodyFactory
00037 {
00038 public:
00039 static boost::intrusive_ptr<AMQMethodBody> create(ClassId c, MethodId m);
00040 };
00041
00042 }}
00043
00044 #endif