diff options
author | tastytea | 2020-01-03 13:05:00 +0100 |
---|---|---|
committer | tastytea | 2020-01-03 13:05:00 +0100 |
commit | 9874e76de248835d0b3cc2d20ee2f151a4b553bb (patch) | |
tree | 6acf2348f23ce5ad045e41e34e2738bc830ef8af /include/request.hpp | |
parent | ed3111eb9e73ac178339149e79f3e135ace06551 (diff) | |
download | mastodonpp-9874e76de248835d0b3cc2d20ee2f151a4b553bb.tar mastodonpp-9874e76de248835d0b3cc2d20ee2f151a4b553bb.tar.gz mastodonpp-9874e76de248835d0b3cc2d20ee2f151a4b553bb.zip |
Improve documentation.
Diffstat (limited to 'include/request.hpp')
-rw-r--r-- | include/request.hpp | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/include/request.hpp b/include/request.hpp index 97aa2ec..f1bc6ec 100644 --- a/include/request.hpp +++ b/include/request.hpp @@ -22,9 +22,21 @@ namespace mastodonpp { +/*! + * @brief Used to make a request to the Mastodon API. + * + * @since 0.1.0 + */ class Request { public: + /*! + * @brief Construct a new Request object. + * + * @param instance An Instance with the access data. + * + * @since 0.1.0 + */ explicit Request(Instance &instance); private: |