summaryrefslogtreecommitdiff
path: root/cpp/src/qpid/client/Connection.h
diff options
context:
space:
mode:
authorAlan Conway <aconway@apache.org>2008-06-09 20:55:09 +0000
committerAlan Conway <aconway@apache.org>2008-06-09 20:55:09 +0000
commit03a39d920d010b29b156a99ee9b3fcfc7c7c64a1 (patch)
tree0959d63de389bd08fcb5d074eb5a0712a1db24a8 /cpp/src/qpid/client/Connection.h
parent31a74cd4a5c849b134a172cc5e6ce2e2a447e5e5 (diff)
downloadqpid-python-03a39d920d010b29b156a99ee9b3fcfc7c7c64a1.tar.gz
Updated doxygen comments in qpid/client/*.h
Changed request-response example to use SubscriptionManager like the others. git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk/qpid@665891 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'cpp/src/qpid/client/Connection.h')
-rw-r--r--cpp/src/qpid/client/Connection.h23
1 files changed, 5 insertions, 18 deletions
diff --git a/cpp/src/qpid/client/Connection.h b/cpp/src/qpid/client/Connection.h
index 81a7ffa008..a476f2d880 100644
--- a/cpp/src/qpid/client/Connection.h
+++ b/cpp/src/qpid/client/Connection.h
@@ -25,27 +25,16 @@
#include <string>
#include "ConnectionImpl.h"
#include "qpid/client/Session.h"
-#include "qpid/framing/AMQP_HighestVersion.h"
namespace qpid {
-
-/**
- * The client namespace contains all classes that make up a client
- * implementation of the AMQP protocol. The key classes that form
- * the basis of the client API to be used by applications are
- * Connection and Channel.
- */
namespace client {
class ConnectionSettings;
-/**
- * \defgroup clientapi Application API for an AMQP client.
- */
/**
* Represents a connection to an AMQP broker. All communication is
- * initiated by establishing a connection, then opening one or
- * more Channels over that connection.
+ * initiated by establishing a connection, then creating one or more
+ * Session objecst using the connection. @see newSession()
*
* \ingroup clientapi
*/
@@ -60,12 +49,10 @@ class Connection
public:
/**
- * Creates a connection object, but does not open the
- * connection.
- *
- * @param _version the version of the protocol to connect with.
+ * Creates a connection object, but does not open the connection.
+ * @see open()
*/
- Connection(framing::ProtocolVersion=framing::highestProtocolVersion);
+ Connection();
~Connection();
/**