// 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 MakeOnDemanHttpIoDispatcher(TUniquePtr&& Cache); } // namespace UE::IoStore #undef UE_API