Skip to content

Commit

Permalink
fix export (#5270)
Browse files Browse the repository at this point in the history
* fix export

* naming

* quotes

* more quotes
  • Loading branch information
gearama authored Jan 16, 2024
1 parent c42e03e commit b43d53b
Show file tree
Hide file tree
Showing 6 changed files with 19 additions and 15 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

#pragma once

#include "azure/core/dll_import_export.hpp"
#include "azure/data/tables/dll_import_export.hpp"

#include <azure/core/http/policies/policy.hpp>

Expand All @@ -12,7 +12,7 @@

namespace Azure { namespace Data { namespace Tables { namespace _detail { namespace Policies {

AZ_CORE_DLLEXPORT extern const Azure::Core::Context::Key SecondaryHostReplicaStatusKey;
AZ_DATA_TABLES_DLLEXPORT extern const Azure::Core::Context::Key SecondaryHostReplicaStatusKey;

inline Azure::Core::Context WithReplicaStatus(const Azure::Core::Context& context)
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,12 @@

#pragma once

#include "azure/data/tables/dll_import_export.hpp"

#include <azure/core/datetime.hpp>
#include <azure/core/internal/extendable_enumeration.hpp>
#include <azure/core/nullable.hpp>
#include <azure/core/paged_response.hpp>
#include <azure/data/tables/dll_import_export.hpp>

#include <cstdint>
#include <map>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT License.

#include <azure/data/tables/internal/policies/switch_to_secondary_policy.hpp>
#include "azure/data/tables/internal/policies/switch_to_secondary_policy.hpp"

namespace Azure { namespace Data { namespace Tables { namespace _detail { namespace Policies {

Expand Down
3 changes: 2 additions & 1 deletion sdk/tables/azure-data-tables/src/serializers.cpp
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT License.

#include "azure/data/tables/internal/serializers.hpp"

#include <azure/core/internal/json/json.hpp>
#include <azure/data/tables/internal/serializers.hpp>

using namespace Azure::Data::Tables::_detail::Xml;
using namespace Azure::Data::Tables;
Expand Down
17 changes: 9 additions & 8 deletions sdk/tables/azure-data-tables/src/tables_clients.cpp
Original file line number Diff line number Diff line change
@@ -1,14 +1,15 @@
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT License.

#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/shared_key_policy.hpp>
#include <azure/data/tables/internal/policies/switch_to_secondary_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 <azure/data/tables/tables_clients.hpp>
#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/shared_key_policy.hpp"
#include "azure/data/tables/internal/policies/switch_to_secondary_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 <sstream>
#include <string>
Expand Down
5 changes: 3 additions & 2 deletions sdk/tables/azure-data-tables/src/transactions.cpp
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT License.

#include <azure/data/tables/internal/serializers.hpp>
#include <azure/data/tables/transactions.hpp>
#include "azure/data/tables/transactions.hpp"

#include "azure/data/tables/internal/serializers.hpp"

using namespace Azure::Data::Tables;
using namespace Azure::Data::Tables::_detail;
Expand Down

0 comments on commit b43d53b

Please sign in to comment.