Files
UnrealEngine/Engine/Source/Runtime/Online/BackgroundHTTP/Public/BackgroundHttpResponseImpl.h
2025-05-18 13:04:45 +08:00

27 lines
622 B
C++

// Copyright Epic Games, Inc. All Rights Reserved.
#pragma once
#include "Containers/UnrealString.h"
#include "HAL/Platform.h"
#include "Interfaces/IBackgroundHttpResponse.h"
/**
* Contains implementation of some common functions that don't vary between implementation
*/
class FBackgroundHttpResponseImpl
: public IBackgroundHttpResponse
{
public:
FBackgroundHttpResponseImpl();
virtual ~FBackgroundHttpResponseImpl() {}
//IHttpBackgroundResponse
virtual int32 GetResponseCode() const;
virtual const FString& GetTempContentFilePath() const;
protected:
FString TempContentFilePath;
int32 ResponseCode;
};