Files
Brandyn / Techy fcc1b09210 init
2026-04-04 15:40:51 -05:00

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