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/AmazonWebServiceRequest.cpp

21 lines
543 B
C++

/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#include <aws/core/AmazonWebServiceRequest.h>
#include <aws/core/utils/memory/stl/AWSStringStream.h>
using namespace Aws;
AmazonWebServiceRequest::AmazonWebServiceRequest() :
m_responseStreamFactory(Aws::Utils::Stream::DefaultResponseStreamFactoryMethod),
m_onDataReceived(nullptr),
m_onDataSent(nullptr),
m_continueRequest(nullptr),
m_onRequestSigned(nullptr),
m_requestRetryHandler(nullptr)
{
}