26 lines
473 B
C++
26 lines
473 B
C++
// Copyright Epic Games, Inc. All Rights Reserved.
|
|
|
|
#pragma once
|
|
|
|
#include "IO/HttpIoDispatcher.h"
|
|
#include "Templates/SharedPointer.h"
|
|
|
|
#define UE_API IOSTOREONDEMANDCORE_API
|
|
|
|
|
|
namespace UE::IoStore
|
|
{
|
|
|
|
class IOnDemandHttpIoDispatcher
|
|
: public IHttpIoDispatcher
|
|
{
|
|
public:
|
|
virtual ~IOnDemandHttpIoDispatcher() = default;
|
|
};
|
|
|
|
TSharedPtr<IOnDemandHttpIoDispatcher> MakeOnDemanHttpIoDispatcher(TUniquePtr<class IIasCache>&& Cache);
|
|
|
|
} // namespace UE::IoStore
|
|
|
|
#undef UE_API
|