]> git.ipfire.org Git - thirdparty/kea.git/commitdiff
[5088] Fixed doxygen errors.
authorMarcin Siodelski <marcin@isc.org>
Thu, 22 Dec 2016 14:30:53 +0000 (15:30 +0100)
committerMarcin Siodelski <marcin@isc.org>
Thu, 22 Dec 2016 14:30:53 +0000 (15:30 +0100)
src/lib/http/date_time.cc
src/lib/http/date_time.h
src/lib/http/response_creator.h

index 0800b67ae689daccb24837e7cc6333b1963da415..552f1a69b3f7e8c844e779ea06120e8afdfce9b9 100644 (file)
@@ -19,7 +19,7 @@ HttpDateTime::HttpDateTime()
     : time_(boost::posix_time::microsec_clock::universal_time()) {
 }
 
-HttpDateTime::HttpDateTime(const ptime& t)
+HttpDateTime::HttpDateTime(const boost::posix_time::ptime& t)
     : time_(t) {
 }
 
index c26a381875581eeb5c39b32c56e542967ef557f9..8ac15b816bb4a44e26e13b21319fb3963c7900ab 100644 (file)
@@ -35,8 +35,8 @@ public:
 /// The first format is preferred but implementations must also support
 /// remaining two obsolete formats for compatibility. This class implements
 /// parsers and generators for all three formats. It uses @c boost::posix_time
-/// to represent time and date. It uses @ref boost::date_time::time_facet
-/// and @ref boost::date_time::time_input_facet to generate and parse the
+/// to represent time and date. It uses @c boost::date_time::time_facet
+/// and @c boost::date_time::time_input_facet to generate and parse the
 /// timestamps.
 class HttpDateTime {
 public:
@@ -46,14 +46,14 @@ public:
     /// Sets current universal time as time value.
     HttpDateTime();
 
-    /// @brief Construct from @ref boost::posix_time::ptime object.
+    /// @brief Construct from @c boost::posix_time::ptime object.
     ///
     /// @param t time value to be set.
     explicit HttpDateTime(const boost::posix_time::ptime& t);
 
     /// @brief Returns time encapsulated by this class.
     ///
-    /// @return @ref boost::posix_time::ptime value encapsulated by the instance
+    /// @return @c boost::posix_time::ptime value encapsulated by the instance
     /// of this class.
     boost::posix_time::ptime getPtime() const {
         return (time_);
index e83bc9e7670cddee51508f37a1ba175ddadef359..602670bb893ab2934a5edbcc2e8e420742e3abf7 100644 (file)
@@ -67,7 +67,7 @@ public:
 
 protected:
 
-    /// @brief Creates implentation specific HTTP 400 response..
+    /// @brief Creates implentation specific HTTP 400 response.
     ///
     /// @param request Pointer to an object representing HTTP request.
     /// @return Pointer to an object representing HTTP 400 response.