From: JINMEI Tatuya Date: Fri, 27 Jan 2012 17:51:20 +0000 (-0800) Subject: [1575] added '\brief' to doxygen items for clarity X-Git-Tag: trac2351_base~277^2~9 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=da9546a3569e096c68bdc9c5dda7c317cd0a77bf;p=thirdparty%2Fkea.git [1575] added '\brief' to doxygen items for clarity --- diff --git a/src/lib/dns/nsec3hash.h b/src/lib/dns/nsec3hash.h index 37979db9c8..7629485c59 100644 --- a/src/lib/dns/nsec3hash.h +++ b/src/lib/dns/nsec3hash.h @@ -31,8 +31,8 @@ class NSEC3PARAM; } } -/// An exception that is thrown for when an \c NSEC3Hash object is constructed -/// with an unknown hash algorithm. +/// \brief An exception that is thrown for when an \c NSEC3Hash object is +/// constructed with an unknown hash algorithm. /// /// A specific exception class is used so that the caller can selectively /// catch this exception, e.g., while loading a zone, and handle it @@ -44,7 +44,7 @@ public: isc::Exception(file, line, what) {} }; -/// A calculator of NSEC3 hashes. +/// \brief A calculator of NSEC3 hashes. /// /// This is a simple class that encapsulates the algorithm of calculating /// NSEC3 hash values as defined in RFC5155. @@ -82,7 +82,7 @@ public: /// the internal resources for different sets of parameters. class NSEC3Hash : public boost::noncopyable { public: - /// Constructor from NSEC3PARAM RDATA. + /// \brief Constructor from NSEC3PARAM RDATA. /// /// The hash algorithm given via \c param must be known to the /// implementation. Otherwise \c UnknownNSEC3HashAlgorithm exception @@ -95,10 +95,10 @@ public: /// \param param NSEC3 parameters used for subsequent calculation. NSEC3Hash(const rdata::generic::NSEC3PARAM& param); - /// The destructor. + /// \brief The destructor. ~NSEC3Hash(); - /// Calculate the NSEC3 hash. + /// \brief Calculate the NSEC3 hash. /// /// This method calculates the NSEC3 hash value for the given \c name /// with the hash parameters (algorithm, iterations and salt) given at