From f83f28eacc0337cbeefe71b4be3c8a374e9c737a Mon Sep 17 00:00:00 2001 From: Mathieu Lacage Date: Thu, 29 Mar 2007 16:55:42 +0200 Subject: [PATCH] add doxygen doc for missing methopds --- src/node/net-device.h | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/src/node/net-device.h b/src/node/net-device.h index 4b30ebf75..3552775a7 100644 --- a/src/node/net-device.h +++ b/src/node/net-device.h @@ -57,10 +57,18 @@ class NetDevice { public: /** * \param node base class node pointer of device's node + * \param addr MAC address of this device. */ NetDevice(Node* node, const MacAddress& addr); virtual ~NetDevice() {} + /** + * \param context the trace context to use to construct the + * TraceResolver to return + * \returns a TraceResolver which can resolve all traces + * performed in this object. The caller must + * delete the returned object. + */ TraceResolver *CreateTraceResolver (TraceContext const &context); /**