From 72d0b18fe6be9120cd40e6a79104e14701a7da37 Mon Sep 17 00:00:00 2001 From: root Date: Thu, 20 Mar 2014 11:17:47 -0400 Subject: [PATCH] fix namespace in readme --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 6777e3f..79da95c 100644 --- a/README.md +++ b/README.md @@ -63,7 +63,7 @@ class MyConnectionHandler : public AMQP::ConnectionHandler * to use. * @param connection The connection that can now be used */ - virtual void onConnected(Connection *connection) + virtual void onConnected(AMQP::Connection *connection) { // @todo // add your own implementation, for example by creating a channel @@ -77,7 +77,7 @@ class MyConnectionHandler : public AMQP::ConnectionHandler * @param connection The connection on which the error occured * @param message A human readable error message */ - virtual void onError(Connection *connection, const std::string &message) + virtual void onError(AMQP::Connection *connection, const std::string &message) { // @todo // add your own implementation, for example by reporting the error