diff options
author | Oleg Morozenkov <omorozenkov@gmail.com> | 2018-06-05 19:06:23 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-06-05 19:06:23 +0300 |
commit | 1a90b5022d47bc0059214381b74db6fae9767cef (patch) | |
tree | f88e480700cb36f8acdcfdebcbac01328f16c98d /include/tgbot/net/Url.h | |
parent | 381a1cd0d949db88abd0b28bc717a8690b93ccc0 (diff) | |
parent | 0f4e792a641527aa590a1a9e23bdaad2f16ab6bc (diff) |
Merge pull request #63 from JellyBrick/master
Bot API 2.2 (Game) update / Add optimization option
Diffstat (limited to 'include/tgbot/net/Url.h')
-rw-r--r-- | include/tgbot/net/Url.h | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/include/tgbot/net/Url.h b/include/tgbot/net/Url.h index 56f502a..c039355 100644 --- a/include/tgbot/net/Url.h +++ b/include/tgbot/net/Url.h @@ -28,7 +28,8 @@ namespace TgBot { /** - * This class parses a string with the url + * @brief This class parses a string with the url + * * @ingroup net */ class Url { @@ -37,27 +38,27 @@ public: Url(const std::string& url); /** - * Protocol part of an url. Example: https:// + * @brief Protocol part of an url. Example: https:// */ std::string protocol; /** - * Host part of an url. Example: www.example.com + * @brief Host part of an url. Example: www.example.com */ std::string host; /** - * Path part of an url including preceding '/' char. Example: /index.html + * @brief Path part of an url including preceding '/' char. Example: /index.html */ std::string path; /** - * Query part of an url without '?' char. Example: a=1&b=2&c=3 + * @brief Query part of an url without '?' char. Example: a=1&b=2&c=3 */ std::string query; /** - * Fragment part of an url without '#' char. Example: section1 + * @brief Fragment part of an url without '#' char. Example: section1 */ std::string fragment; }; |