Files
UnrealEngine/Engine/Source/Runtime/Online/BackgroundHTTP/Public/BackgroundHttpResponseImpl.h
Brandyn / Techy fcc1b09210 init
2026-04-04 15:40:51 -05: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;
};