summaryrefslogtreecommitdiff
path: root/cpp/src
diff options
context:
space:
mode:
authorJonathan Robie <jonathan@apache.org>2008-11-19 11:54:02 +0000
committerJonathan Robie <jonathan@apache.org>2008-11-19 11:54:02 +0000
commitc3ceafd1bb708615752f34f8f0bf88d992645c49 (patch)
treec426cb025bd07fbb848d1f3d653aa60b4e0f811e /cpp/src
parent8a0b56e75dc369c7126158fa5090d8b1eae93540 (diff)
downloadqpid-python-c3ceafd1bb708615752f34f8f0bf88d992645c49.tar.gz
Removed overblown Doxygen comments.
git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk/qpid@718937 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'cpp/src')
-rw-r--r--cpp/src/qpid/client/Connection.h26
1 files changed, 1 insertions, 25 deletions
diff --git a/cpp/src/qpid/client/Connection.h b/cpp/src/qpid/client/Connection.h
index 0a74df9206..d03542bb5b 100644
--- a/cpp/src/qpid/client/Connection.h
+++ b/cpp/src/qpid/client/Connection.h
@@ -109,31 +109,7 @@ class Connection
/**
* Opens a connection to a broker.
*
- * @param the settings to use (host, port etc)
- *
- * Specifying connection parameters with ConnectionSettings
- *
- * @code
- * #include <qpid/client/ConnectionSettings.h>
- * #include <qpid/client/Connection.h>
- * #include <qpid/client/Session.h>
- *
- * using namespace qpid::client;
- *
- * int main(int , char** ) {
- *
- * ConnectionSettings connectionSettings;
- * connectionSettings.host = "localhost";
- * connectionSettings.port = 5672;
- * connectionSettings.tcpNoDelay = true;
- * connectionSettings.maxFrameSize = 65535;
- * connectionSettings.bounds = 4;
- *
- * Connection connection;
- * try {
- * connection.open(connectionSettings);
- * Session session = connection.newSession();
- * @endcode
+ * @param the settings to use (host, port etc). @see ConnectionSettings.
*/
void open(const ConnectionSettings& settings);