From: Marcin Siodelski Date: Thu, 5 Feb 2015 19:01:41 +0000 (+0100) Subject: [3665] Trivial: cleanup of the doxygen for lfc. X-Git-Tag: trac3712_base~17^2~1 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=a0705dc5c2fb3e81e0da6b179a144a3cc7729064;p=thirdparty%2Fkea.git [3665] Trivial: cleanup of the doxygen for lfc. --- diff --git a/src/bin/lfc/lfc_controller.h b/src/bin/lfc/lfc_controller.h index 837f75852c..f8a471e667 100644 --- a/src/bin/lfc/lfc_controller.h +++ b/src/bin/lfc/lfc_controller.h @@ -59,10 +59,11 @@ public: ~LFCController(); /// @brief Acts as the primary entry point to start execution - /// of the process. Provides the control logic to combine - /// two lease files and weed out duplicate and expired leases. - /// A description of the design can be found at - /// http://kea.isc.org/wiki/LFCDesign + /// of the process. + /// + ///Provides the control logic to combine two lease files and + /// weed out duplicate and expired leases. A description of + /// the design can be found at http://kea.isc.org/wiki/LFCDesign /// /// -# parse command line arguments /// -# verify that it is the only instance @@ -80,8 +81,9 @@ public: /// @throw InvalidUsage if the command line parameters are invalid. void launch(int argc, char* argv[]); - /// @brief Process the command line arguments. It is the first - /// step taken after the process has been launched. + /// @brief Process the command line arguments. + /// + /// It is the first step taken after the process has been launched. /// /// @param argc Number of strings in the @c argv array. /// @param argv Array of arguments passed in via the program's main function. @@ -89,10 +91,11 @@ public: /// @throw InvalidUsage if the command line parameters are invalid. void parseArgs(int argc, char* argv[]); - /// @brief Rotate files. After we have a finish file, either from - /// doing the cleanup or because a previous instance was interrupted, - /// delete the work files (previous & copy) and move the finish file - /// to be the new previous file. + /// @brief Rotate files. + /// + /// After we have a finish file, either from doing the cleanup or because + /// a previous instance was interrupted, delete the work files (previous + /// & copy) and move the finish file to be the new previous file. /// /// @throw RunTimeFail if we can't manipulate the files. void fileRotate() const; diff --git a/src/lib/dhcpsrv/lease_file_loader.h b/src/lib/dhcpsrv/lease_file_loader.h index 71a50ba762..d2fc637b8f 100644 --- a/src/lib/dhcpsrv/lease_file_loader.h +++ b/src/lib/dhcpsrv/lease_file_loader.h @@ -183,11 +183,10 @@ public: /// doesn't need to be open because the method re-opens the file. /// @param storage A reference to the container from which leases /// should be written. + /// /// @tparam LeasePtrType A @c Lease4 or @c Lease6. /// @tparam LeaseFileType A @c CSVLeaseFile4 or @c CSVLeaseFile6. /// @tparam StorageType A @c Lease4Storage or @c Lease6Storage. - /// - template static void write(LeaseFileType& lease_file, const StorageType& storage) {