Files
UnrealEngine/Engine/Source/Runtime/Online/BackgroundHTTP/Public/IOS/ApplePlatformBackgroundHttpResponse.h
Brandyn / Techy fcc1b09210 init
2026-04-04 15:40:51 -05:00

18 lines
492 B
C++

// Copyright Epic Games, Inc. All Rights Reserved.
#pragma once
#include "BackgroundHttpResponseImpl.h"
#include "Interfaces/IBackgroundHttpRequest.h"
/**
* Contains implementation of some common functions that don't vary between implementation
*/
class FApplePlatformBackgroundHttpResponse
: public FBackgroundHttpResponseImpl
{
public:
//Provide constructor to create an already
FApplePlatformBackgroundHttpResponse(int32 ResponseCode, const FString& TempContentFilePath);
};