From dbaf379f19ec62085afc526eca65fb6d92a12a3b Mon Sep 17 00:00:00 2001 From: "Scott E. Graves" Date: Wed, 9 Oct 2024 11:32:03 -0500 Subject: [PATCH] refactor --- .../librepertory/include/comm/curl/requests/http_delete.hpp | 6 +++--- .../librepertory/include/comm/curl/requests/http_get.hpp | 6 +++--- .../librepertory/include/comm/curl/requests/http_head.hpp | 6 +++--- .../librepertory/include/comm/curl/requests/http_post.hpp | 6 +++--- .../include/comm/curl/requests/http_put_file.hpp | 6 +++--- .../include/comm/curl/requests/http_request_base.hpp | 6 +++--- 6 files changed, 18 insertions(+), 18 deletions(-) diff --git a/repertory/librepertory/include/comm/curl/requests/http_delete.hpp b/repertory/librepertory/include/comm/curl/requests/http_delete.hpp index 62b26f64..593bdc9c 100644 --- a/repertory/librepertory/include/comm/curl/requests/http_delete.hpp +++ b/repertory/librepertory/include/comm/curl/requests/http_delete.hpp @@ -19,8 +19,8 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ -#ifndef REPERTORY_INCLUDE_COMM_CURL_CURL_REQUESTS_HTTP_DELETE_HPP_ -#define REPERTORY_INCLUDE_COMM_CURL_CURL_REQUESTS_HTTP_DELETE_HPP_ +#ifndef REPERTORY_INCLUDE_COMM_CURL_REQUESTS_HTTP_DELETE_HPP_ +#define REPERTORY_INCLUDE_COMM_CURL_REQUESTS_HTTP_DELETE_HPP_ #include "comm/curl/requests/http_request_base.hpp" @@ -37,4 +37,4 @@ struct http_delete final : http_request_base { }; } // namespace repertory::curl::requests -#endif // REPERTORY_INCLUDE_COMM_CURL_CURL_REQUESTS_HTTP_DELETE_HPP_ +#endif // REPERTORY_INCLUDE_COMM_CURL_REQUESTS_HTTP_DELETE_HPP_ diff --git a/repertory/librepertory/include/comm/curl/requests/http_get.hpp b/repertory/librepertory/include/comm/curl/requests/http_get.hpp index 9708f34d..662070a2 100644 --- a/repertory/librepertory/include/comm/curl/requests/http_get.hpp +++ b/repertory/librepertory/include/comm/curl/requests/http_get.hpp @@ -19,8 +19,8 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ -#ifndef REPERTORY_INCLUDE_COMM_CURL_CURL_REQUESTS_HTTP_GET_HPP_ -#define REPERTORY_INCLUDE_COMM_CURL_CURL_REQUESTS_HTTP_GET_HPP_ +#ifndef REPERTORY_INCLUDE_COMM_CURL_REQUESTS_HTTP_GET_HPP_ +#define REPERTORY_INCLUDE_COMM_CURL_REQUESTS_HTTP_GET_HPP_ #include "comm/curl/requests/http_request_base.hpp" @@ -42,4 +42,4 @@ struct http_get final : http_request_base { }; } // namespace repertory::curl::requests -#endif // REPERTORY_INCLUDE_COMM_CURL_CURL_REQUESTS_HTTP_GET_HPP_ +#endif // REPERTORY_INCLUDE_COMM_CURL_REQUESTS_HTTP_GET_HPP_ diff --git a/repertory/librepertory/include/comm/curl/requests/http_head.hpp b/repertory/librepertory/include/comm/curl/requests/http_head.hpp index 6c51de30..d7e225b8 100644 --- a/repertory/librepertory/include/comm/curl/requests/http_head.hpp +++ b/repertory/librepertory/include/comm/curl/requests/http_head.hpp @@ -19,8 +19,8 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ -#ifndef REPERTORY_INCLUDE_COMM_CURL_CURL_REQUESTS_HTTP_HEAD_HPP_ -#define REPERTORY_INCLUDE_COMM_CURL_CURL_REQUESTS_HTTP_HEAD_HPP_ +#ifndef REPERTORY_INCLUDE_COMM_CURL_REQUESTS_HTTP_HEAD_HPP_ +#define REPERTORY_INCLUDE_COMM_CURL_REQUESTS_HTTP_HEAD_HPP_ #include "comm/curl/requests/http_request_base.hpp" @@ -38,4 +38,4 @@ struct http_head final : http_request_base { }; } // namespace repertory::curl::requests -#endif // REPERTORY_INCLUDE_COMM_CURL_CURL_REQUESTS_HTTP_HEAD_HPP_ +#endif // REPERTORY_INCLUDE_COMM_CURL_REQUESTS_HTTP_HEAD_HPP_ diff --git a/repertory/librepertory/include/comm/curl/requests/http_post.hpp b/repertory/librepertory/include/comm/curl/requests/http_post.hpp index 4aaff448..9345bfda 100644 --- a/repertory/librepertory/include/comm/curl/requests/http_post.hpp +++ b/repertory/librepertory/include/comm/curl/requests/http_post.hpp @@ -19,8 +19,8 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ -#ifndef REPERTORY_INCLUDE_COMM_CURL_CURL_REQUESTS_HTTP_POST_HPP_ -#define REPERTORY_INCLUDE_COMM_CURL_CURL_REQUESTS_HTTP_POST_HPP_ +#ifndef REPERTORY_INCLUDE_COMM_CURL_REQUESTS_HTTP_POST_HPP_ +#define REPERTORY_INCLUDE_COMM_CURL_REQUESTS_HTTP_POST_HPP_ #include "comm/curl/requests/http_request_base.hpp" @@ -45,4 +45,4 @@ private: }; } // namespace repertory::curl::requests -#endif // REPERTORY_INCLUDE_COMM_CURL_CURL_REQUESTS_HTTP_POST_HPP_ +#endif // REPERTORY_INCLUDE_COMM_CURL_REQUESTS_HTTP_POST_HPP_ diff --git a/repertory/librepertory/include/comm/curl/requests/http_put_file.hpp b/repertory/librepertory/include/comm/curl/requests/http_put_file.hpp index 810f132a..1c3faa27 100644 --- a/repertory/librepertory/include/comm/curl/requests/http_put_file.hpp +++ b/repertory/librepertory/include/comm/curl/requests/http_put_file.hpp @@ -19,8 +19,8 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ -#ifndef REPERTORY_INCLUDE_COMM_CURL_CURL_REQUESTS_HTTP_PUT_FILE_HPP_ -#define REPERTORY_INCLUDE_COMM_CURL_CURL_REQUESTS_HTTP_PUT_FILE_HPP_ +#ifndef REPERTORY_INCLUDE_COMM_CURL_REQUESTS_HTTP_PUT_FILE_HPP_ +#define REPERTORY_INCLUDE_COMM_CURL_REQUESTS_HTTP_PUT_FILE_HPP_ #include "comm/curl/requests/http_request_base.hpp" #include "utils/encrypting_reader.hpp" @@ -47,4 +47,4 @@ private: }; } // namespace repertory::curl::requests -#endif // REPERTORY_INCLUDE_COMM_CURL_CURL_REQUESTS_HTTP_PUT_FILE_HPP_ +#endif // REPERTORY_INCLUDE_COMM_CURL_REQUESTS_HTTP_PUT_FILE_HPP_ diff --git a/repertory/librepertory/include/comm/curl/requests/http_request_base.hpp b/repertory/librepertory/include/comm/curl/requests/http_request_base.hpp index 1dbbe6cf..9049c754 100644 --- a/repertory/librepertory/include/comm/curl/requests/http_request_base.hpp +++ b/repertory/librepertory/include/comm/curl/requests/http_request_base.hpp @@ -19,8 +19,8 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ -#ifndef REPERTORY_INCLUDE_COMM_CURL_CURL_REQUESTS_HTTP_REQUEST_BASE_HPP_ -#define REPERTORY_INCLUDE_COMM_CURL_CURL_REQUESTS_HTTP_REQUEST_BASE_HPP_ +#ifndef REPERTORY_INCLUDE_COMM_CURL_REQUESTS_HTTP_REQUEST_BASE_HPP_ +#define REPERTORY_INCLUDE_COMM_CURL_REQUESTS_HTTP_REQUEST_BASE_HPP_ #include "types/repertory.hpp" #include "utils/file.hpp" @@ -79,4 +79,4 @@ struct http_request_base { }; } // namespace repertory::curl::requests -#endif // REPERTORY_INCLUDE_COMM_CURL_CURL_REQUESTS_HTTP_REQUEST_BASE_HPP_ +#endif // REPERTORY_INCLUDE_COMM_CURL_REQUESTS_HTTP_REQUEST_BASE_HPP_