blob: 0928186839a0e25900b771136d32a7a37cd5dd65 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#include <aws/core/endpoint/EndpointProviderBase.h>
namespace Aws
{
namespace Endpoint
{
/**
* Export endpoint provider symbols from DLL
*/
template class AWS_CORE_API EndpointProviderBase<Aws::Client::GenericClientConfiguration<false>,
Aws::Endpoint::BuiltInParameters,
Aws::Endpoint::ClientContextParameters>;
} // namespace Endpoint
} // namespace Aws
|