From 929e815c73f18e5f4b55e65b5367c58a95e5bf8c Mon Sep 17 00:00:00 2001 From: tastytea Date: Thu, 14 Jun 2018 01:52:05 +0200 Subject: [PATCH] added @since-tags --- src/easy/easy.hpp | 2 ++ src/easy/entities/status.hpp | 14 ++++++++++++++ 2 files changed, 16 insertions(+) diff --git a/src/easy/easy.hpp b/src/easy/easy.hpp index 0687c57..2ba2366 100644 --- a/src/easy/easy.hpp +++ b/src/easy/easy.hpp @@ -344,6 +344,8 @@ public: /*! * @brief Sets the value of key + * + * @since 0.17.0 */ const void set(const string &key, const Json::Value &value); diff --git a/src/easy/entities/status.hpp b/src/easy/entities/status.hpp index ea1bf36..e7634a9 100644 --- a/src/easy/entities/status.hpp +++ b/src/easy/entities/status.hpp @@ -89,6 +89,8 @@ namespace Mastodon /*! * @brief Sets content of status + * + * @since 0.17.0 */ Status content(const string &content); @@ -119,6 +121,8 @@ namespace Mastodon /*! * @brief Sets the ID of the status it replies to + * + * @since 0.17.0 */ Status in_reply_to_id(const uint_fast64_t &in_reply_to_id); @@ -134,6 +138,8 @@ namespace Mastodon /*! * @brief Sets the language of the status + * + * @since 0.17.0 */ Status language(const string &language); @@ -144,6 +150,8 @@ namespace Mastodon /*! * @brief Sets the attachments + * + * @since 0.17.0 */ Status media_attachments (const std::vector &media_attachments); @@ -185,6 +193,8 @@ namespace Mastodon /*! * @brief Sets sensitive flag for attachments + * + * @since 0.17.0 */ Status sensitive(const bool &sensitive); @@ -195,6 +205,8 @@ namespace Mastodon /*! * @brief Sets the spoiler text + * + * @since 0.17.0 */ Status spoiler_text(const string &spoiler_text); @@ -220,6 +232,8 @@ namespace Mastodon /*! * @brief Sets the visibility of the status + * + * @since 0.17.0 */ Status visibility(const visibility_type &visibility); };