diff options
Diffstat (limited to 'cpp/src/qpid/client/Connection.h')
-rw-r--r-- | cpp/src/qpid/client/Connection.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/cpp/src/qpid/client/Connection.h b/cpp/src/qpid/client/Connection.h index e6bfbddef6..81d9b972b6 100644 --- a/cpp/src/qpid/client/Connection.h +++ b/cpp/src/qpid/client/Connection.h @@ -25,7 +25,7 @@ #include <string> #include "Channel.h" #include "ConnectionImpl.h" -#include "qpid/client/Session_0_10.h" +#include "qpid/client/Session.h" #include "qpid/framing/AMQP_HighestVersion.h" #include "qpid/framing/Uuid.h" @@ -134,13 +134,13 @@ class Connection * that the broker may discard the session state. Default is 0, * meaning the session cannot be resumed. */ - Session_0_10 newSession(SynchronousMode sync, uint32_t detachedLifetime=0); + Session newSession(SynchronousMode sync, uint32_t detachedLifetime=0); /** * Resume a suspendded session. A session may be resumed * on a different connection to the one that created it. */ - void resume(Session_0_10& session); + void resume(Session& session); }; }} // namespace qpid::client |