00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022 #ifndef _FutureResult_
00023 #define _FutureResult_
00024
00025 #include <string>
00026 #include "qpid/framing/amqp_framing.h"
00027 #include "FutureCompletion.h"
00028
00029 namespace qpid {
00030 namespace client {
00031
00032 class SessionImpl;
00033
00035 class FutureResult : public FutureCompletion
00036 {
00037 std::string result;
00038 public:
00039 const std::string& getResult(SessionImpl& session) const;
00040 void received(const std::string& result);
00041 };
00042
00043 }}
00044
00045
00046
00047 #endif