Files
UnrealEngineUWP/Engine/Source/Developer/DerivedDataCache/Private/MemoryCacheStore.h
devin doucette 1d698f7814 DDC: Removed the remaining legacy cache implementations and made the default implementation non-virtual
#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]
2022-06-10 17:21:00 -04:00

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