aboutsummaryrefslogtreecommitdiffstats
path: root/contrib/libs/aws-sdk-cpp/aws-cpp-sdk-core/source/utils/crypto/EncryptionMaterials.cpp
blob: d000c86baa427732d329ff4915ee81b7a3bf5a7c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
/**
 * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 * SPDX-License-Identifier: Apache-2.0.
 */
#include <aws/core/utils/crypto/EncryptionMaterials.h>

namespace Aws
{
    namespace Utils
    {
        namespace Crypto
        {
            //this is here to force the linker to behave correctly since this is an interface that will need to cross the dll 
            //boundary.
            EncryptionMaterials::~EncryptionMaterials()
            {}
        }
    }
}