From 20f5e442edd48ea241fc95828c4e44530cb80e80 Mon Sep 17 00:00:00 2001 From: "Peter D. Barnes, Jr" Date: Mon, 27 Apr 2020 15:22:11 -0700 Subject: [PATCH] doc: Add CommandLine::Usage to the doxygen for every example --- CHANGES.html | 1 + RELEASE_NOTES | 1 + doc/.gitignore | 1 + src/core/model/command-line.cc | 139 +++++++++++++++++++++++++++++---- src/core/model/command-line.h | 50 ++++++++++-- wscript | 34 ++++++++ 6 files changed, 204 insertions(+), 22 deletions(-) diff --git a/CHANGES.html b/CHANGES.html index b87fd426a..a5a56dd9a 100644 --- a/CHANGES.html +++ b/CHANGES.html @@ -81,6 +81,7 @@ transmitted.
  • The internal TCP API for TcpCongestionOps has been extended to support the CongControl method to allow for delivery rate estimation feedback to the congestion control mechanism.
  • Functions LteEnbPhy::ReceiveUlHarqFeedback and LteUePhy::ReceiveLteDlHarqFeedback are renamed to LteEnbPhy::ReportUlHarqFeedback and LteUePhy::EnqueueDlHarqFeedback, respectively to avoid confusion about their functionality. LteHelper is updated accordingly.
  • Now on, instead of uint8_t, uint16_t would be used to store a bandwidth value in LTE.
  • +
  • The preferred way to declare instances of CommandLine is now through a macro: COMMANDLINE (cmd). This enables us to add the CommandLine::Usage() message to the Doxygen for the program.
  • Changes to build system: