docs: improve Doxygen comments.
refs: #1435
Change-Id: I21624ef4eec393c82a50229a07e8277fb6ae4ddf
diff --git a/src/route/name-prefix-table-entry.hpp b/src/route/name-prefix-table-entry.hpp
index a3428dd..ddae8ce 100644
--- a/src/route/name-prefix-table-entry.hpp
+++ b/src/route/name-prefix-table-entry.hpp
@@ -77,12 +77,20 @@
return m_nexthopList;
}
+ /*! \brief Generates a next-hop list from routing table entries. */
void
generateNhlfromRteList();
void
removeRoutingTableEntry(RoutingTableEntry& rte);
+ /*! \brief Adds a routing table entry to this object's list.
+ \param rte The routing table entry.
+
+ Adds a routing table entry to this NPT entry's list. (reminder:
+ each RTE has a next-hop list) They are used to calculate this
+ entry's next-hop list.
+ */
void
addRoutingTableEntry(RoutingTableEntry& rte);