src/core/config.h
changeset 2594 a8f89acd17a1
parent 2586 50d78910a997
child 2941 e1ff74674f87
--- a/src/core/config.h	Tue Mar 11 13:34:29 2008 -0700
+++ b/src/core/config.h	Tue Mar 11 13:46:22 2008 -0700
@@ -78,14 +78,14 @@
  * match the input path and will then connect the input callback
  * to them.
  */
-void Connect (std::string path, const CallbackBase &cb);
+void ConnectWithoutContext (std::string path, const CallbackBase &cb);
 /**
  * \param path a path to match trace sources.
  * \param cb the callback to disconnect to the matching trace sources.
  *
  * This function undoes the work of Config::Connect.
  */
-void Disconnect (std::string path, const CallbackBase &cb);
+void DisconnectWithoutContext (std::string path, const CallbackBase &cb);
 /**
  * \param path a path to match trace sources.
  * \param cb the callback to connect to the matching trace sources.
@@ -95,14 +95,14 @@
  * to them in such a way that the callback will receive an extra
  * context string upon trace event notification.
  */
-void ConnectWithContext (std::string path, const CallbackBase &cb);
+void Connect (std::string path, const CallbackBase &cb);
 /**
  * \param path a path to match trace sources.
  * \param cb the callback to connect to the matching trace sources.
  *
  * This function undoes the work of Config::ConnectWithContext.
  */
-void DisconnectWithContext (std::string path, const CallbackBase &cb);
+void Disconnect (std::string path, const CallbackBase &cb);
 
 /**
  * \param obj a new root object