This repository has been archived on 2025-09-14. You can view files and clone it, but cannot push or open issues or pull requests.
Files
pxz-hos-client-cpp-module/support/aws-sdk-cpp-master/aws-cpp-sdk-core/source/Globals.cpp

29 lines
726 B
C++

/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#include <aws/core/Globals.h>
#include <aws/core/utils/EnumParseOverflowContainer.h>
#include <aws/core/utils/memory/AWSMemory.h>
namespace Aws
{
static const char TAG[] = "GlobalEnumOverflowContainer";
static Utils::EnumParseOverflowContainer* g_enumOverflow;
Utils::EnumParseOverflowContainer* GetEnumOverflowContainer()
{
return g_enumOverflow;
}
void InitializeEnumOverflowContainer()
{
g_enumOverflow = Aws::New<Aws::Utils::EnumParseOverflowContainer>(TAG);
}
void CleanupEnumOverflowContainer()
{
Aws::Delete(g_enumOverflow);
}
}