Rename header files to match the namespace structure for things nested within Azure::Core. (#1879)

* Rename header files to match the namespace structure for things nested
within Azure::Core.

* Update a header include that was missed.
This commit is contained in:
Ahson Khan 2021-03-11 16:22:37 -08:00 committed by GitHub
parent bd8336f8a2
commit fc79c5b3ad
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
109 changed files with 146 additions and 134 deletions

View File

@ -49,6 +49,11 @@
- Moved `AccessToken`, `TokenCredential`, and `AuthenticationException` from `Azure::Core` to `Azure::Core::Credentials` namespace.
- Moved the Http policies from `Azure::Core::Http` to `Azure::Core::Http::Policies`.
- Moved `Azure::Core::Http::Url` to `Azure::Core::Url`.
- Renamed `azure/core/credentials.hpp` to `azure/core/credentials/credentials.hpp`
- Renamed `azure/core/logger.hpp` to `azure/core/diagnostics/logger.hpp`
- Renamed `azure/core/http/policy.hpp` to `azure/core/http/policies/policy.hpp`
- Renamed `azure/core/http/curl/curl.hpp` to `azure/core/http/curl_transport.hpp`
- Renamed `azure/core/http/winhttp/win_http_client.hpp` to `azure/core/http/win_http_transport.hpp`
### Bug Fixes

View File

@ -34,40 +34,40 @@ endif()
if(BUILD_TRANSPORT_CURL)
SET(CURL_TRANSPORT_ADAPTER_SRC src/http/curl/curl.cpp)
SET(CURL_TRANSPORT_ADAPTER_INC inc/azure/core/http/curl/curl.hpp)
SET(CURL_TRANSPORT_ADAPTER_INC inc/azure/core/http/curl_transport.hpp)
endif()
if(BUILD_TRANSPORT_WINHTTP)
SET(WIN_TRANSPORT_ADAPTER_SRC src/http/winhttp/win_http_transport.cpp)
SET(WIN_TRANSPORT_ADAPTER_INC inc/azure/core/http/winhttp/win_http_client.hpp)
SET(WIN_TRANSPORT_ADAPTER_INC inc/azure/core/http/win_http_transport.hpp)
endif()
set(
AZURE_CORE_HEADER
${CURL_TRANSPORT_ADAPTER_INC}
${WIN_TRANSPORT_ADAPTER_INC}
inc/azure/core/credentials/credentials.hpp
inc/azure/core/cryptography/hash.hpp
inc/azure/core/diagnostics/logger.hpp
inc/azure/core/http/http.hpp
inc/azure/core/http/policy.hpp
inc/azure/core/http/policies/policy.hpp
inc/azure/core/http/transport.hpp
inc/azure/core/internal/client_options.hpp
inc/azure/core/internal/contract.hpp
inc/azure/core/internal/diagnostics/log.hpp
inc/azure/core/internal/hkeyholder.hpp
inc/azure/core/internal/http/pipeline.hpp
inc/azure/core/internal/json_serializable.hpp
inc/azure/core/internal/json.hpp
inc/azure/core/internal/log.hpp
inc/azure/core/internal/null_body_stream.hpp
inc/azure/core/internal/io/null_body_stream.hpp
inc/azure/core/internal/json/json_serializable.hpp
inc/azure/core/internal/json/json.hpp
inc/azure/core/internal/strings.hpp
inc/azure/core/io/body_stream.hpp
inc/azure/core/base64.hpp
inc/azure/core/case_insensitive_containers.hpp
inc/azure/core/context.hpp
inc/azure/core/credentials.hpp
inc/azure/core/datetime.hpp
inc/azure/core/dll_import_export.hpp
inc/azure/core/etag.hpp
inc/azure/core/exception.hpp
inc/azure/core/logger.hpp
inc/azure/core/match_conditions.hpp
inc/azure/core/modified_conditions.hpp
inc/azure/core/nullable.hpp
@ -75,8 +75,8 @@ set(
inc/azure/core/operation_status.hpp
inc/azure/core/platform.hpp
inc/azure/core/response.hpp
inc/azure/core/uuid.hpp
inc/azure/core/url.hpp
inc/azure/core/uuid.hpp
inc/azure/core/version.hpp
inc/azure/core.hpp
)

View File

@ -12,13 +12,12 @@
// azure/core
#include "azure/core/base64.hpp"
#include "azure/core/case_insensitive_containers.hpp"
#include "azure/core/context.hpp"
#include "azure/core/credentials.hpp"
#include "azure/core/datetime.hpp"
#include "azure/core/dll_import_export.hpp"
#include "azure/core/etag.hpp"
#include "azure/core/exception.hpp"
#include "azure/core/logger.hpp"
#include "azure/core/match_conditions.hpp"
#include "azure/core/modified_conditions.hpp"
#include "azure/core/nullable.hpp"
@ -30,13 +29,21 @@
#include "azure/core/uuid.hpp"
#include "azure/core/version.hpp"
// azure/core/credentials
#include "azure/core/credentials/credentials.hpp"
// azure/core/cryptography
#include "azure/core/cryptography/hash.hpp"
// azure/core/diagnostics
#include "azure/core/diagnostics/logger.hpp"
// azure/core/http
#include "azure/core/http/http.hpp"
#include "azure/core/http/policy.hpp"
#include "azure/core/http/transport.hpp"
// azure/core/http/policies
#include "azure/core/http/policies/policy.hpp"
// azure/core/io
#include "azure/core/io/body_stream.hpp"

View File

@ -10,7 +10,7 @@
#include "azure/core/case_insensitive_containers.hpp"
#include "azure/core/context.hpp"
#include "azure/core/credentials.hpp"
#include "azure/core/credentials/credentials.hpp"
#include "azure/core/dll_import_export.hpp"
#include "azure/core/http/http.hpp"
#include "azure/core/http/transport.hpp"

View File

@ -10,7 +10,7 @@
#pragma once
#include "azure/core/http/http.hpp"
#include "azure/core/http/policy.hpp"
#include "azure/core/http/policies/policy.hpp"
#include <memory>
#include <vector>

View File

@ -3,8 +3,8 @@
#pragma once
#include "azure/core/diagnostics/logger.hpp"
#include "azure/core/dll_import_export.hpp"
#include "azure/core/logger.hpp"
#include <atomic>
#include <type_traits>

View File

@ -11,7 +11,7 @@
#include "azure/core/context.hpp"
#include "azure/core/http/http.hpp"
#include "azure/core/http/policy.hpp"
#include "azure/core/http/policies/policy.hpp"
#include "azure/core/http/transport.hpp"
#include "azure/core/internal/client_options.hpp"

View File

@ -3,7 +3,7 @@
#pragma once
#include "azure/core/logger.hpp"
#include "azure/core/diagnostics/logger.hpp"
#if defined(AZ_PLATFORM_WINDOWS)
#if !defined(WIN32_LEAN_AND_MEAN)

View File

@ -1,7 +1,7 @@
// Copyright (c) Microsoft Corporation. All rights reserved.
// SPDX-License-Identifier: MIT
#include "azure/core/http/policy.hpp"
#include "azure/core/http/policies/policy.hpp"
#include <chrono>

View File

@ -1,11 +1,11 @@
// Copyright (c) Microsoft Corporation. All rights reserved.
// SPDX-License-Identifier: MIT
#include "azure/core/http/curl/curl.hpp"
#include "azure/core/http/curl_transport.hpp"
#include "azure/core/http/http.hpp"
#include "azure/core/http/policy.hpp"
#include "azure/core/http/policies/policy.hpp"
#include "azure/core/http/transport.hpp"
#include "azure/core/internal/log.hpp"
#include "azure/core/internal/diagnostics/log.hpp"
#include "azure/core/platform.hpp"
// Private incude

View File

@ -2,8 +2,8 @@
// SPDX-License-Identifier: MIT
#include "azure/core/http/http.hpp"
#include "azure/core/http/policy.hpp"
#include "azure/core/internal/null_body_stream.hpp"
#include "azure/core/http/policies/policy.hpp"
#include "azure/core/internal/io/null_body_stream.hpp"
#include "azure/core/url.hpp"
#include <utility>

View File

@ -1,8 +1,8 @@
// Copyright (c) Microsoft Corporation. All rights reserved.
// SPDX-License-Identifier: MIT
#include "azure/core/http/policy.hpp"
#include "azure/core/internal/log.hpp"
#include "azure/core/http/policies/policy.hpp"
#include "azure/core/internal/diagnostics/log.hpp"
#include <algorithm>
#include <chrono>

View File

@ -1,7 +1,7 @@
// Copyright (c) Microsoft Corporation. All rights reserved.
// SPDX-License-Identifier: MIT
#include "azure/core/http/policy.hpp"
#include "azure/core/http/policies/policy.hpp"
#include "azure/core/http/http.hpp"
using Azure::Core::Context;

View File

@ -1,8 +1,8 @@
// Copyright (c) Microsoft Corporation. All rights reserved.
// SPDX-License-Identifier: MIT
#include "azure/core/http/policy.hpp"
#include "azure/core/internal/log.hpp"
#include "azure/core/http/policies/policy.hpp"
#include "azure/core/internal/diagnostics/log.hpp"
#include <algorithm>
#include <cstdlib>

View File

@ -1,7 +1,7 @@
// Copyright (c) Microsoft Corporation. All rights reserved.
// SPDX-License-Identifier: MIT
#include "azure/core/http/policy.hpp"
#include "azure/core/http/policies/policy.hpp"
#include "azure/core/platform.hpp"
#include <cctype>

View File

@ -1,14 +1,14 @@
// Copyright (c) Microsoft Corporation. All rights reserved.
// SPDX-License-Identifier: MIT
#include "azure/core/http/policy.hpp"
#include "azure/core/http/policies/policy.hpp"
#if defined(BUILD_CURL_HTTP_TRANSPORT_ADAPTER)
#include "azure/core/http/curl/curl.hpp"
#include "azure/core/http/curl_transport.hpp"
#endif
#if defined(BUILD_TRANSPORT_WINHTTP_ADAPTER)
#include "azure/core/http/winhttp/win_http_client.hpp"
#include "azure/core/http/win_http_transport.hpp"
#endif
using Azure::Core::Context;

View File

@ -4,7 +4,7 @@
#include "azure/core/http/http.hpp"
#if defined(BUILD_TRANSPORT_WINHTTP_ADAPTER)
#include "azure/core/http/winhttp/win_http_client.hpp"
#include "azure/core/http/win_http_transport.hpp"
#endif
#include <Windows.h>

View File

@ -1,8 +1,8 @@
// Copyright (c) Microsoft Corporation. All rights reserved.
// SPDX-License-Identifier: MIT
#include "azure/core/logger.hpp"
#include "azure/core/internal/log.hpp"
#include "azure/core/diagnostics/logger.hpp"
#include "azure/core/internal/diagnostics/log.hpp"
#include <mutex>
#include <shared_mutex>

View File

@ -29,7 +29,7 @@ SOFTWARE.
#include "doctest_compatibility.h"
#include <azure/core/internal/json.hpp>
#include <azure/core/internal/json/json.hpp>
using Azure::Core::Json::_internal::json;
TEST_CASE("algorithms")

View File

@ -30,7 +30,7 @@ SOFTWARE.
#include "doctest_compatibility.h"
#define private public
#include <azure/core/internal/json.hpp>
#include <azure/core/internal/json/json.hpp>
using Azure::Core::Json::_internal::json;
#undef private

View File

@ -29,7 +29,7 @@ SOFTWARE.
#include "doctest_compatibility.h"
#include <azure/core/internal/json.hpp>
#include <azure/core/internal/json/json.hpp>
#include <string>
#include <utility>

View File

@ -29,7 +29,7 @@ SOFTWARE.
#include "doctest_compatibility.h"
#include <azure/core/internal/json.hpp>
#include <azure/core/internal/json/json.hpp>
using Azure::Core::Json::_internal::json;
TEST_CASE("capacity")

View File

@ -30,7 +30,7 @@ SOFTWARE.
#include "doctest_compatibility.h"
#define private public
#include <azure/core/internal/json.hpp>
#include <azure/core/internal/json/json.hpp>
using Azure::Core::Json::_internal::json;
#undef private

View File

@ -30,7 +30,7 @@ SOFTWARE.
#include "doctest_compatibility.h"
#define private public
#include <azure/core/internal/json.hpp>
#include <azure/core/internal/json/json.hpp>
using Azure::Core::Json::_internal::json;
#undef private

View File

@ -30,7 +30,7 @@ SOFTWARE.
#include "doctest_compatibility.h"
#define private public
#include <azure/core/internal/json.hpp>
#include <azure/core/internal/json/json.hpp>
using Azure::Core::Json::_internal::json;
#undef private

View File

@ -29,7 +29,7 @@ SOFTWARE.
#include "doctest_compatibility.h"
#include <azure/core/internal/json.hpp>
#include <azure/core/internal/json/json.hpp>
using Azure::Core::Json::_internal::json;
namespace {

View File

@ -29,7 +29,7 @@ SOFTWARE.
#include "doctest_compatibility.h"
#include <azure/core/internal/json.hpp>
#include <azure/core/internal/json/json.hpp>
using Azure::Core::Json::_internal::json;
TEST_CASE("concepts")

View File

@ -31,7 +31,7 @@ SOFTWARE.
DOCTEST_GCC_SUPPRESS_WARNING("-Wfloat-equal")
#define private public
#include <azure/core/internal/json.hpp>
#include <azure/core/internal/json/json.hpp>
using Azure::Core::Json::_internal::json;
#undef private

View File

@ -29,7 +29,7 @@ SOFTWARE.
#include "doctest_compatibility.h"
#include <azure/core/internal/json.hpp>
#include <azure/core/internal/json/json.hpp>
using Azure::Core::Json::_internal::json;
TEST_CASE("other constructors and destructor")

View File

@ -30,7 +30,7 @@ SOFTWARE.
#include "doctest_compatibility.h"
#define private public
#include <azure/core/internal/json.hpp>
#include <azure/core/internal/json/json.hpp>
using Azure::Core::Json::_internal::json;
#undef private

View File

@ -30,7 +30,7 @@ SOFTWARE.
#include "doctest_compatibility.h"
#define private public
#include <azure/core/internal/json.hpp>
#include <azure/core/internal/json/json.hpp>
using Azure::Core::Json::_internal::json;
#undef private

View File

@ -29,7 +29,7 @@ SOFTWARE.
#include "doctest_compatibility.h"
#include <azure/core/internal/json.hpp>
#include <azure/core/internal/json/json.hpp>
using Azure::Core::Json::_internal::json;
#include <iostream>

View File

@ -29,7 +29,7 @@ SOFTWARE.
#include "doctest_compatibility.h"
#include <azure/core/internal/json.hpp>
#include <azure/core/internal/json/json.hpp>
using Azure::Core::Json::_internal::json;
TEST_CASE("element access 1")

View File

@ -29,7 +29,7 @@ SOFTWARE.
#include "doctest_compatibility.h"
#include <azure/core/internal/json.hpp>
#include <azure/core/internal/json/json.hpp>
using Azure::Core::Json::_internal::json;
TEST_CASE("element access 2")

View File

@ -29,7 +29,7 @@ SOFTWARE.
#include "doctest_compatibility.h"
#include <azure/core/internal/json.hpp>
#include <azure/core/internal/json/json.hpp>
using Azure::Core::Json::_internal::json;
#include <fstream>

View File

@ -29,7 +29,7 @@ SOFTWARE.
#include "doctest_compatibility.h"
#include <azure/core/internal/json.hpp>
#include <azure/core/internal/json/json.hpp>
using Azure::Core::Json::_internal::json;
#if (defined(__cplusplus) && __cplusplus >= 201703L) \

View File

@ -30,7 +30,7 @@ SOFTWARE.
#include "doctest_compatibility.h"
#define private public
#include <azure/core/internal/json.hpp>
#include <azure/core/internal/json/json.hpp>
using Azure::Core::Json::_internal::json;
#undef private

View File

@ -29,7 +29,7 @@ SOFTWARE.
#include "doctest_compatibility.h"
#include <azure/core/internal/json.hpp>
#include <azure/core/internal/json/json.hpp>
using Azure::Core::Json::_internal::json;
TEST_CASE("iterators 2")

View File

@ -29,7 +29,7 @@ SOFTWARE.
#include "doctest_compatibility.h"
#include <azure/core/internal/json.hpp>
#include <azure/core/internal/json/json.hpp>
using Azure::Core::Json::_internal::json;
#include <algorithm>

View File

@ -29,7 +29,7 @@ SOFTWARE.
#include "doctest_compatibility.h"
#include <azure/core/internal/json.hpp>
#include <azure/core/internal/json/json.hpp>
using Azure::Core::Json::_internal::json;
TEST_CASE("modifiers")

View File

@ -29,7 +29,7 @@ SOFTWARE.
#include "doctest_compatibility.h"
#include <azure/core/internal/json.hpp>
#include <azure/core/internal/json/json.hpp>
using Azure::Core::Json::_internal::json;
namespace {

View File

@ -29,7 +29,7 @@ SOFTWARE.
#include "doctest_compatibility.h"
#include <azure/core/internal/json.hpp>
#include <azure/core/internal/json/json.hpp>
using Azure::Core::Json::_internal::json;
TEST_CASE("pointer access")

View File

@ -30,7 +30,7 @@ SOFTWARE.
#include "doctest_compatibility.h"
DOCTEST_GCC_SUPPRESS_WARNING("-Wfloat-equal")
#include <azure/core/internal/json.hpp>
#include <azure/core/internal/json/json.hpp>
using Azure::Core::Json::_internal::json;
#include <deque>

View File

@ -30,7 +30,7 @@ SOFTWARE.
#include "doctest_compatibility.h"
DOCTEST_GCC_SUPPRESS_WARNING("-Wfloat-equal")
#include <azure/core/internal/json.hpp>
#include <azure/core/internal/json/json.hpp>
using Azure::Core::Json::_internal::json;
TEST_CASE("reference access")

View File

@ -29,7 +29,7 @@ SOFTWARE.
#include "doctest_compatibility.h"
#include <azure/core/internal/json.hpp>
#include <azure/core/internal/json/json.hpp>
using Azure::Core::Json::_internal::json;
#include <iomanip>

View File

@ -29,7 +29,7 @@ SOFTWARE.
#include "doctest_compatibility.h"
#include <azure/core/internal/json.hpp>
#include <azure/core/internal/json/json.hpp>
using Azure::Core::Json::_internal::json;
#include <fstream>

View File

@ -33,7 +33,7 @@ SOFTWARE.
#include "doctest_compatibility.h"
#include <azure/core/internal/json.hpp>
#include <azure/core/internal/json/json.hpp>
using Azure::Core::Json::_internal::detail::dtoa_impl::reinterpret_bits;
namespace {

View File

@ -29,7 +29,7 @@ SOFTWARE.
#include "doctest_compatibility.h"
#include <azure/core/internal/json.hpp>
#include <azure/core/internal/json/json.hpp>
using Azure::Core::Json::_internal::json;
#include <array>

View File

@ -29,7 +29,7 @@ SOFTWARE.
#include "doctest_compatibility.h"
#include <azure/core/internal/json.hpp>
#include <azure/core/internal/json/json.hpp>
using Azure::Core::Json::_internal::json;
#include <list>

View File

@ -29,7 +29,7 @@ SOFTWARE.
#include "doctest_compatibility.h"
#include <azure/core/internal/json.hpp>
#include <azure/core/internal/json/json.hpp>
using Azure::Core::Json::_internal::json;
namespace {

View File

@ -3,7 +3,7 @@
#include <azure/core/context.hpp>
#include <azure/core/http/http.hpp>
#include <azure/core/http/policy.hpp>
#include <azure/core/http/policies/policy.hpp>
#include <azure/core/http/transport.hpp>
#include <azure/core/internal/client_options.hpp>
#include <gtest/gtest.h>

View File

@ -3,11 +3,11 @@
#include "transport_adapter_base.hpp"
#include <azure/core/context.hpp>
#include <azure/core/http/policy.hpp>
#include <azure/core/http/policies/policy.hpp>
#include <azure/core/response.hpp>
#if defined(BUILD_CURL_HTTP_TRANSPORT_ADAPTER)
#include "azure/core/http/curl/curl.hpp"
#include "azure/core/http/curl_transport.hpp"
#endif
#include <iostream>

View File

@ -5,13 +5,13 @@
#include <azure/core/context.hpp>
#include <azure/core/http/http.hpp>
#include <azure/core/http/policy.hpp>
#include <azure/core/http/policies/policy.hpp>
#include <azure/core/http/transport.hpp>
#include <azure/core/internal/http/pipeline.hpp>
#include <azure/core/response.hpp>
#if defined(BUILD_CURL_HTTP_TRANSPORT_ADAPTER)
#include "azure/core/http/curl/curl.hpp"
#include "azure/core/http/curl_transport.hpp"
#endif
#include <http/curl/curl_connection_private.hpp>

View File

@ -18,7 +18,7 @@
#pragma clang diagnostic ignored "-Wgnu-zero-variadic-macro-arguments"
#endif // _MSC_VER
#include <azure/core/http/curl/curl.hpp>
#include <azure/core/http/curl_transport.hpp>
#include <curl/curl.h>
#include <gmock/gmock.h>
#include <gtest/gtest.h>

View File

@ -3,7 +3,7 @@
#include "curl_session.hpp"
#include <azure/core/http/curl/curl.hpp>
#include <azure/core/http/curl_transport.hpp>
#include <azure/core/http/http.hpp>
#include <http/curl/curl_connection_private.hpp>

View File

@ -5,7 +5,7 @@
#include "http.hpp"
#include <azure/core/http/http.hpp>
#include <azure/core/internal/null_body_stream.hpp>
#include <azure/core/internal/io/null_body_stream.hpp>
#include <string>
#include <utility>

View File

@ -1,7 +1,7 @@
// Copyright (c) Microsoft Corporation. All rights reserved.
// SPDX-License-Identifier: MIT
#include <azure/core/internal/json.hpp>
#include <azure/core/internal/json/json.hpp>
#include <gtest/gtest.h>
using json = Azure::Core::Json::_internal::json;

View File

@ -1,7 +1,7 @@
// Copyright (c) Microsoft Corporation. All rights reserved.
// SPDX-License-Identifier: MIT
#include <azure/core/internal/log.hpp>
#include <azure/core/internal/diagnostics/log.hpp>
#include <gtest/gtest.h>
using Azure::Core::Diagnostics::Logger;

View File

@ -1,7 +1,7 @@
// Copyright (c) Microsoft Corporation. All rights reserved.
// SPDX-License-Identifier: MIT
#include <azure/core/http/policy.hpp>
#include <azure/core/http/policies/policy.hpp>
#include <azure/core/internal/http/pipeline.hpp>
#include <gtest/gtest.h>

View File

@ -1,7 +1,7 @@
// Copyright (c) Microsoft Corporation. All rights reserved.
// SPDX-License-Identifier: MIT
#include <azure/core/http/policy.hpp>
#include <azure/core/http/policies/policy.hpp>
#include <azure/core/internal/http/pipeline.hpp>
#include <gtest/gtest.h>

View File

@ -1,7 +1,7 @@
// Copyright (c) Microsoft Corporation. All rights reserved.
// SPDX-License-Identifier: MIT
#include <azure/core/http/policy.hpp>
#include <azure/core/http/policies/policy.hpp>
#include <azure/core/internal/http/pipeline.hpp>
#include <gtest/gtest.h>

View File

@ -3,15 +3,15 @@
#include "transport_adapter_base.hpp"
#include <azure/core/http/policy.hpp>
#include <azure/core/http/policies/policy.hpp>
#include <azure/core/http/transport.hpp>
#if defined(BUILD_CURL_HTTP_TRANSPORT_ADAPTER)
#include "azure/core/http/curl/curl.hpp"
#include "azure/core/http/curl_transport.hpp"
#endif
#if defined(BUILD_TRANSPORT_WINHTTP_ADAPTER)
#include "azure/core/http/winhttp/win_http_client.hpp"
#include "azure/core/http/win_http_transport.hpp"
#endif
#include <string>

View File

@ -16,7 +16,7 @@
#include "azure/perf/dynamic_test_options.hpp"
#include "azure/perf/test_options.hpp"
#include <azure/core/internal/json.hpp>
#include <azure/core/internal/json/json.hpp>
#include <iostream>
#include <vector>

View File

@ -4,7 +4,7 @@
#include "azure/perf/program.hpp"
#include "azure/perf/argagg.hpp"
#include <azure/core/internal/json.hpp>
#include <azure/core/internal/json/json.hpp>
#include <azure/core/internal/strings.hpp>
#include <chrono>

View File

@ -11,7 +11,7 @@
#include "azure/perf/test/http_client_get_test.hpp"
#include <azure/core/http/curl/curl.hpp>
#include <azure/core/http/curl_transport.hpp>
#include <curl/curl.h>

View File

@ -11,7 +11,7 @@
#include "azure/perf/test/http_client_get_test.hpp"
#include <azure/core/http/winhttp/win_http_client.hpp>
#include <azure/core/http/win_http_transport.hpp>
namespace Azure { namespace Perf { namespace Test {

View File

@ -10,8 +10,8 @@
#include "azure/identity/dll_import_export.hpp"
#include <azure/core/credentials.hpp>
#include <azure/core/http/policy.hpp>
#include <azure/core/credentials/credentials.hpp>
#include <azure/core/http/policies/policy.hpp>
#include <azure/core/internal/client_options.hpp>
#include <string>

View File

@ -8,7 +8,7 @@
#pragma once
#include <azure/core/credentials.hpp>
#include <azure/core/credentials/credentials.hpp>
#include <memory>

View File

@ -12,8 +12,8 @@
#include <azure/core/context.hpp>
#include <azure/core/http/http.hpp>
#include <azure/core/internal/http/pipeline.hpp>
#include <azure/core/internal/json.hpp>
#include <azure/core/internal/json_serializable.hpp>
#include <azure/core/internal/json/json.hpp>
#include <azure/core/internal/json/json_serializable.hpp>
#include <azure/core/response.hpp>
#include <functional>

View File

@ -4,9 +4,9 @@
#include "azure/keyvault/common/keyvault_exception.hpp"
#include "azure/keyvault/common/keyvault_constants.hpp"
#include <azure/core/http/policy.hpp>
#include <azure/core/http/policies/policy.hpp>
#include <azure/core/internal/json.hpp>
#include <azure/core/internal/json/json.hpp>
#include <type_traits>
using namespace Azure::Security::KeyVault::Common;

View File

@ -4,7 +4,7 @@
#include "gtest/gtest.h"
#include <azure/core/http/http.hpp>
#include <azure/core/http/policy.hpp>
#include <azure/core/http/policies/policy.hpp>
#include <azure/core/internal/client_options.hpp>
#include <azure/keyvault/common/internal/keyvault_pipeline.hpp>

View File

@ -9,7 +9,7 @@
#pragma once
#include <azure/core/internal/json_serializable.hpp>
#include <azure/core/internal/json/json_serializable.hpp>
#include <azure/core/nullable.hpp>
#include "azure/keyvault/keys/key_create_options.hpp"

View File

@ -7,7 +7,7 @@
#include <azure/keyvault/common/internal/unix_time_helper.hpp>
#include <azure/core/internal/json.hpp>
#include <azure/core/internal/json/json.hpp>
using namespace Azure::Security::KeyVault::Keys;
using Azure::Security::KeyVault::Common::_internal::UnixTimeConverter;

View File

@ -1,9 +1,9 @@
// Copyright (c) Microsoft Corporation. All rights reserved.
// SPDX-License-Identifier: MIT
#include <azure/core/credentials.hpp>
#include <azure/core/credentials/credentials.hpp>
#include <azure/core/http/http.hpp>
#include <azure/core/http/policy.hpp>
#include <azure/core/http/policies/policy.hpp>
#include "azure/keyvault/keys/details/key_constants.hpp"
#include "azure/keyvault/keys/details/key_request_parameters.hpp"

View File

@ -1,7 +1,7 @@
// Copyright (c) Microsoft Corporation. All rights reserved.
// SPDX-License-Identifier: MIT
#include <azure/core/internal/json.hpp>
#include <azure/core/internal/json/json.hpp>
#include "azure/keyvault/keys/details/key_constants.hpp"
#include "azure/keyvault/keys/details/key_request_parameters.hpp"

View File

@ -7,7 +7,7 @@
#include <azure/keyvault/common/internal/unix_time_helper.hpp>
#include <azure/core/internal/json.hpp>
#include <azure/core/internal/json/json.hpp>
using namespace Azure::Security::KeyVault::Keys;
using Azure::Security::KeyVault::Common::_internal::UnixTimeConverter;

View File

@ -8,7 +8,7 @@
#include <memory>
#include <string>
#include <azure/core/credentials.hpp>
#include <azure/core/credentials/credentials.hpp>
#include <azure/storage/common/storage_credential.hpp>
#include "azure/storage/blobs/blob_options.hpp"

View File

@ -6,7 +6,7 @@
#include <memory>
#include <string>
#include <azure/core/credentials.hpp>
#include <azure/core/credentials/credentials.hpp>
#include <azure/storage/common/storage_credential.hpp>
#include "azure/storage/blobs/blob_container_client.hpp"

View File

@ -3,7 +3,7 @@
#include "azure/storage/blobs/blob_client.hpp"
#include <azure/core/http/policy.hpp>
#include <azure/core/http/policies/policy.hpp>
#include <azure/storage/common/concurrent_transfer.hpp>
#include <azure/storage/common/constants.hpp>
#include <azure/storage/common/file_io.hpp>

View File

@ -3,7 +3,7 @@
#include "azure/storage/blobs/blob_container_client.hpp"
#include <azure/core/http/policy.hpp>
#include <azure/core/http/policies/policy.hpp>
#include <azure/storage/common/constants.hpp>
#include <azure/storage/common/shared_key_policy.hpp>
#include <azure/storage/common/storage_common.hpp>

View File

@ -3,7 +3,7 @@
#include "azure/storage/blobs/blob_service_client.hpp"
#include <azure/core/http/policy.hpp>
#include <azure/core/http/policies/policy.hpp>
#include <azure/storage/common/constants.hpp>
#include <azure/storage/common/shared_key_policy.hpp>
#include <azure/storage/common/storage_common.hpp>

View File

@ -6,7 +6,7 @@
#include <memory>
#include <string>
#include <azure/core/http/policy.hpp>
#include <azure/core/http/policies/policy.hpp>
#include "azure/storage/common/storage_credential.hpp"

View File

@ -11,7 +11,7 @@
#include <vector>
#include <azure/core/case_insensitive_containers.hpp>
#include <azure/core/http/policy.hpp>
#include <azure/core/http/policies/policy.hpp>
#include "azure/storage/common/constants.hpp"
#include "azure/storage/common/storage_per_retry_policy.hpp"

View File

@ -5,7 +5,7 @@
#include <memory>
#include <azure/core/http/policy.hpp>
#include <azure/core/http/policies/policy.hpp>
namespace Azure { namespace Storage { namespace _detail {

View File

@ -6,7 +6,7 @@
#include <memory>
#include <string>
#include <azure/core/http/policy.hpp>
#include <azure/core/http/policies/policy.hpp>
namespace Azure { namespace Storage { namespace _detail {

View File

@ -5,8 +5,8 @@
#include <type_traits>
#include <azure/core/http/policy.hpp>
#include <azure/core/internal/json.hpp>
#include <azure/core/http/policies/policy.hpp>
#include <azure/core/internal/json/json.hpp>
#include "azure/storage/common/constants.hpp"
#include "azure/storage/common/xml_wrapper.hpp"

View File

@ -7,7 +7,7 @@
#include <string>
#include <vector>
#include <azure/core/credentials.hpp>
#include <azure/core/credentials/credentials.hpp>
#include <azure/core/internal/http/pipeline.hpp>
#include <azure/core/response.hpp>
#include <azure/storage/common/storage_credential.hpp>

View File

@ -7,7 +7,7 @@
#include <memory>
#include <string>
#include <azure/core/credentials.hpp>
#include <azure/core/credentials/credentials.hpp>
#include <azure/core/internal/http/pipeline.hpp>
#include <azure/core/response.hpp>
#include <azure/storage/blobs/block_blob_client.hpp>

View File

@ -6,7 +6,7 @@
#include <memory>
#include <string>
#include <azure/core/credentials.hpp>
#include <azure/core/credentials/credentials.hpp>
#include <azure/core/internal/http/pipeline.hpp>
#include <azure/core/response.hpp>
#include <azure/storage/blobs/blob_container_client.hpp>

View File

@ -8,7 +8,7 @@
#include <string>
#include <vector>
#include <azure/core/credentials.hpp>
#include <azure/core/credentials/credentials.hpp>
#include <azure/core/internal/http/pipeline.hpp>
#include <azure/core/response.hpp>
#include <azure/storage/blobs/blob_client.hpp>

View File

@ -6,7 +6,7 @@
#include <memory>
#include <string>
#include <azure/core/credentials.hpp>
#include <azure/core/credentials/credentials.hpp>
#include <azure/core/internal/http/pipeline.hpp>
#include <azure/core/response.hpp>
#include <azure/storage/blobs/blob_service_client.hpp>

View File

@ -18,7 +18,7 @@
#include <azure/core/etag.hpp>
#include <azure/core/http/http.hpp>
#include <azure/core/internal/http/pipeline.hpp>
#include <azure/core/internal/json.hpp>
#include <azure/core/internal/json/json.hpp>
#include <azure/core/nullable.hpp>
#include <azure/core/response.hpp>
#include <azure/storage/common/crypt.hpp>

View File

@ -3,7 +3,7 @@
#include "azure/storage/files/datalake/datalake_directory_client.hpp"
#include <azure/core/http/policy.hpp>
#include <azure/core/http/policies/policy.hpp>
#include <azure/storage/common/constants.hpp>
#include <azure/storage/common/crypt.hpp>
#include <azure/storage/common/shared_key_policy.hpp>

Some files were not shown because too many files have changed in this diff Show More