From a65bb8786a7b9579138ea75b08774c0d4fe35a6d Mon Sep 17 00:00:00 2001 From: tastytea Date: Wed, 9 May 2018 06:24:43 +0200 Subject: [PATCH] Added @since-tags to the doxygen comments --- src/easy/easy.hpp | 4 ++++ src/mastodon-cpp.hpp | 2 ++ 2 files changed, 6 insertions(+) diff --git a/src/easy/easy.hpp b/src/easy/easy.hpp index f141815..dff68f7 100644 --- a/src/easy/easy.hpp +++ b/src/easy/easy.hpp @@ -196,6 +196,8 @@ public: * @endcode * * @return The UTC time as string + * + * @since 0.11.0 */ static const string strtime_utc(const system_clock::time_point &timepoint, const string &format); @@ -204,6 +206,8 @@ public: * @brief See strtime_utc * * @return The local time as string + * + * @since 0.11.0 */ static const string strtime_local(const system_clock::time_point &timepoint, const string &format); diff --git a/src/mastodon-cpp.hpp b/src/mastodon-cpp.hpp index 4a5e579..62178d1 100644 --- a/src/mastodon-cpp.hpp +++ b/src/mastodon-cpp.hpp @@ -365,6 +365,8 @@ public: * @brief Replaces HTML entities with UTF-8 characters * * Supports named and numbered entities, decimal and hexadecimal. + * + * @since 0.12.0 */ static const string unescape_html(const string &html);