00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021 #include <string>
00022
00023 #ifndef _InitiationHandler_
00024 #define _InitiationHandler_
00025
00026 #include "ProtocolInitiation.h"
00027
00028 namespace qpid {
00029 namespace framing {
00030
00031 class InitiationHandler{
00032 public:
00033 virtual ~InitiationHandler();
00034 virtual void initiated(const ProtocolInitiation&) = 0;
00035 };
00036
00037 }
00038 }
00039
00040
00041 #endif