You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
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
|