You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
#preflight 62a38afedf2d057cb2814ea4 #rb Steve.Robb #rnx #ROBOMERGE-AUTHOR: devin.doucette #ROBOMERGE-SOURCE: CL 20601122 via CL 20601125 via CL 20601130 #ROBOMERGE-BOT: UE5 (Release-Engine-Staging -> Main) (v955-20579017) [CL 20602835 by devin doucette in ue5-main branch]
20 lines
354 B
C++
20 lines
354 B
C++
// Copyright Epic Games, Inc. All Rights Reserved.
|
|
|
|
#pragma once
|
|
|
|
#include "DerivedDataLegacyCacheStore.h"
|
|
|
|
namespace UE::DerivedData
|
|
{
|
|
|
|
class IMemoryCacheStore : public ILegacyCacheStore
|
|
{
|
|
public:
|
|
virtual void Delete(const FCacheKey& Key) = 0;
|
|
virtual void DeleteValue(const FCacheKey& Key) = 0;
|
|
|
|
virtual void Disable() = 0;
|
|
};
|
|
|
|
} // UE::DerivedData
|