Move the serializer, xml wrapper, and policies headers out of public/internal and into private folders within src. (#6124)

* Move the serializer and xml wrapper headers out of public/internal and into private folders within src.

* Move the private policy header out of public/internal and into private folders within src.

* Clang format fix.
This commit is contained in:
Ahson Khan 2024-10-25 13:04:32 -07:00 committed by GitHub
parent bcaaa3bfdb
commit d835e1a3b1
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
15 changed files with 22 additions and 20 deletions

View File

@ -46,12 +46,6 @@ set(
inc/azure/data/tables/credentials/named_key_credential.hpp
inc/azure/data/tables/dll_import_export.hpp
inc/azure/data/tables/enum_operators.hpp
inc/azure/data/tables/internal/policies/service_version_policy.hpp
inc/azure/data/tables/internal/policies/shared_key_lite_policy.hpp
inc/azure/data/tables/internal/policies/tenant_bearer_token_policy.hpp
inc/azure/data/tables/internal/policies/timeout_policy.hpp
inc/azure/data/tables/internal/serializers.hpp
inc/azure/data/tables/internal/xml_wrapper.hpp
inc/azure/data/tables/models.hpp
inc/azure/data/tables/rtti.hpp
inc/azure/data/tables.hpp
@ -69,8 +63,14 @@ set(
src/policies/tenant_bearer_token_policy.cpp
src/policies/timeout_policy.cpp
src/private/hmacsha256.hpp
src/private/url_encode.hpp
src/private/package_version.hpp
src/private/policies/service_version_policy.hpp
src/private/policies/shared_key_lite_policy.hpp
src/private/policies/tenant_bearer_token_policy.hpp
src/private/policies/timeout_policy.hpp
src/private/serializers.hpp
src/private/url_encode.hpp
src/private/xml_wrapper.hpp
src/serializers.cpp
src/tables_clients.cpp
src/tables_sas_builder.cpp

View File

@ -1,7 +1,7 @@
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT License.
#include "azure/data/tables/internal/policies/shared_key_lite_policy.hpp"
#include "../private/policies/shared_key_lite_policy.hpp"
#include "../private/hmacsha256.hpp"

View File

@ -1,6 +1,7 @@
// Copyright (c) Microsoft Corporation. All rights reserved.
// SPDX-License-Identifier: MIT
#include "azure/data/tables/internal/policies/tenant_bearer_token_policy.hpp"
#include "../private/policies/tenant_bearer_token_policy.hpp"
#include <azure/core/internal/credentials/authorization_challenge_parser.hpp>

View File

@ -1,7 +1,7 @@
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT License.
#include "azure/data/tables/internal/policies/timeout_policy.hpp"
#include "../private/policies/timeout_policy.hpp"
#include <azure/core/datetime.hpp>
#include <azure/core/platform.hpp>

View File

@ -2,8 +2,9 @@
// Licensed under the MIT License. See License.txt in the project root for license information.
#pragma once
#include "azure/data/tables/internal/xml_wrapper.hpp"
#include "azure/data/tables/models.hpp"
#include "xml_wrapper.hpp"
#include <azure/core/internal/json/json.hpp>

View File

@ -1,7 +1,7 @@
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT License.
#include "azure/data/tables/internal/serializers.hpp"
#include "private/serializers.hpp"
#include <azure/core/internal/json/json.hpp>

View File

@ -3,11 +3,11 @@
#include "azure/data/tables/tables_clients.hpp"
#include "azure/data/tables/internal/policies/service_version_policy.hpp"
#include "azure/data/tables/internal/policies/shared_key_lite_policy.hpp"
#include "azure/data/tables/internal/policies/tenant_bearer_token_policy.hpp"
#include "azure/data/tables/internal/policies/timeout_policy.hpp"
#include "azure/data/tables/internal/serializers.hpp"
#include "private/policies/service_version_policy.hpp"
#include "private/policies/shared_key_lite_policy.hpp"
#include "private/policies/tenant_bearer_token_policy.hpp"
#include "private/policies/timeout_policy.hpp"
#include "private/serializers.hpp"
#include <sstream>
#include <string>

View File

@ -1,7 +1,7 @@
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT License.
#include "azure/data/tables/internal/xml_wrapper.hpp"
#include "private/xml_wrapper.hpp"
#include <azure/core/platform.hpp>

View File

@ -2,7 +2,7 @@
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT License.
#include "azure/data/tables/internal/serializers.hpp"
#include "../src/private/serializers.hpp"
#include "azure/data/tables/tables_clients.hpp"
#include "test/ut/test_base.hpp"

View File

@ -2,8 +2,8 @@
// Licensed under the MIT License.
#include "../src/private/hmacsha256.hpp"
#include "../src/private/policies/shared_key_lite_policy.hpp"
#include "azure/data/tables/credentials/named_key_credential.hpp"
#include "azure/data/tables/internal/policies/shared_key_lite_policy.hpp"
#include <azure/core/base64.hpp>
#include <azure/core/cryptography/hash.hpp>