summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTed Ross <tross@apache.org>2009-01-27 13:13:59 +0000
committerTed Ross <tross@apache.org>2009-01-27 13:13:59 +0000
commit7cda910073c7ba5b411100aa06f131e9afacb4ca (patch)
treedad78e5a0f7629dc37956e5b60e8f5e5d5266767
parent77638d7b61ef2aedbf2b4a330c558704e326d231 (diff)
downloadqpid-python-7cda910073c7ba5b411100aa06f131e9afacb4ca.tar.gz
Minor cosmetic changes
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@738084 13f79535-47bb-0310-9956-ffa450edef68
-rw-r--r--qpid/cpp/src/qpid/console/SessionManager.h18
1 files changed, 9 insertions, 9 deletions
diff --git a/qpid/cpp/src/qpid/console/SessionManager.h b/qpid/cpp/src/qpid/console/SessionManager.h
index 27df00494c..ab6e111caa 100644
--- a/qpid/cpp/src/qpid/console/SessionManager.h
+++ b/qpid/cpp/src/qpid/console/SessionManager.h
@@ -61,8 +61,8 @@ class SessionManager
uint32_t methodTimeout;
uint32_t getTimeout;
- Settings() : rcvObjects(true), rcvEvents(true), rcvHeartbeats(true), userBindings(false),
- methodTimeout(20), getTimeout(20)
+ Settings() : rcvObjects(true), rcvEvents(true), rcvHeartbeats(true),
+ userBindings(false), methodTimeout(20), getTimeout(20)
{}
};
@@ -72,13 +72,13 @@ class SessionManager
* asynchronously or leave it as its default and use only synchronous methods.
*
*@param listener Listener object to receive asynchronous indications.
- *@param rcvObjects Listener wishes to receive managed object data.
- *@param rcvEvents Listener wishes to receive events.
- *@param rcvHeartbeats Listener wishes to receive agent heartbeats.
- *@param userBindings If rcvObjects is true, userBindings allows the console client
- * to control which object classes are received. See the bindPackage and bindClass
- * methods. If userBindings is false, the listener will receive updates for all
- * object classes.
+ *@param settings.rcvObjects Listener wishes to receive managed object data.
+ *@param settings.rcvEvents Listener wishes to receive events.
+ *@param settings.rcvHeartbeats Listener wishes to receive agent heartbeats.
+ *@param settings.userBindings If rcvObjects is true, userBindings allows the
+ * console client to control which object classes are received. See the bindPackage
+ * and bindClass methods. If userBindings is false, the listener will receive
+ * updates for all object classes.
*/
SessionManager(ConsoleListener* listener = 0,
Settings settings = Settings());