From 6e93e32863d453c6c22256996038fe3ad32e5589 Mon Sep 17 00:00:00 2001 From: Vlad Karpushin Date: Thu, 28 Jun 2018 13:42:38 +0700 Subject: [PATCH 1/2] improved header of h file according to doxygen style --- tinycurl.h | 27 ++++++++++++++------------- 1 file changed, 14 insertions(+), 13 deletions(-) diff --git a/tinycurl.h b/tinycurl.h index 0f5a54e..636cd31 100644 --- a/tinycurl.h +++ b/tinycurl.h @@ -1,15 +1,16 @@ -/* - * Tiny Curl C++ wrapper. - * - * This work is based on code by - * Asit Kumar Dhal (https://github.com/asit-dhal) - * Loki Astari (https://github.com/Loki-Astari) - * http://codereview.stackexchange.com/questions/14389/tiny-curl-c-wrapper - * Thank you guys! - * - * License: Unlicensed (Public Domain) - * Homepage: https://github.com/asashnov/tinycurl - */ + /** @brief Tiny Curl C++ wrapper. + + This work is based on code by + + [Asit Kumar Dhal ](https://github.com/asit-dhal) + [Loki Astari ] (https://github.com/Loki-Astari) + + + Thank you guys! + License: Unlicensed (Public Domain) + [Homepage] (https://github.com/asashnov/tinycurl) +*/ + #include #include #include @@ -66,4 +67,4 @@ class TinyCurl std::string m_url; std::string m_data; std::string m_upload_data; -}; +}; \ No newline at end of file From 32ca6dd65aa7d1a4b5e23553976f1d21d7389cf5 Mon Sep 17 00:00:00 2001 From: Vlad Karpushin Date: Thu, 28 Jun 2018 16:20:58 +0700 Subject: [PATCH 2/2] added newline --- tinycurl.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tinycurl.h b/tinycurl.h index 636cd31..3c28519 100644 --- a/tinycurl.h +++ b/tinycurl.h @@ -67,4 +67,4 @@ class TinyCurl std::string m_url; std::string m_data; std::string m_upload_data; -}; \ No newline at end of file +};