--- a/src/internet/model/nsc-sysctl.cc Sun Nov 24 23:48:49 2013 +0100
+++ b/src/internet/model/nsc-sysctl.cc Wed Nov 20 20:15:02 2013 +0100
@@ -23,9 +23,19 @@
namespace ns3 {
+/**
+ * \ingroup nsctcp
+ *
+ * This object represent the underlying nsc stack attributes and
+ * provide a ns-3-like system to access them though sysctls
+ */
class NscStackStringAccessor : public AttributeAccessor
{
public:
+ /**
+ * \brief Constructor
+ * \param name name of the attribute
+ */
NscStackStringAccessor (std::string name) : m_name (name) {}
virtual bool Set (ObjectBase * object, const AttributeValue &val) const;
@@ -33,7 +43,7 @@
virtual bool HasGetter (void) const;
virtual bool HasSetter (void) const;
private:
- std::string m_name;
+ std::string m_name; //!< name of the attribute
};
bool NscStackStringAccessor::HasGetter (void) const