src/core/object.h
changeset 1380 799617173a45
parent 1374 77468496f7e0
child 1383 12f30b7defb4
--- a/src/core/object.h	Tue Aug 28 13:10:18 2007 +0200
+++ b/src/core/object.h	Tue Aug 28 13:14:43 2007 +0200
@@ -141,9 +141,28 @@
    */
   void AddInterface (Ptr<Object> other);
 
-
+  /**
+   * \param path the path to match for the callback
+   * \param cb callback to connect
+   *
+   * Connect the input callback to all trace sources which
+   * match the input path.
+   *
+   */
   void TraceConnect (std::string path, const CallbackBase &cb);
+  /**
+   * \param path the path to match for the callback
+   * \param cb callback to disconnect
+   *
+   * Disconnect the input callback from all trace sources which
+   * match the input path.
+   */
   void TraceDisconnect (std::string path, const CallbackBase &cb);
+  /**
+   * \returns the trace resolver associated to this object.
+   *
+   * This method should be rarely called by users.
+   */
   virtual Ptr<TraceResolver> GetTraceResolver (void);
 protected:
   /**