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

20 lines
408 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, const FSharedString& Name) = 0;
virtual void DeleteValue(const FCacheKey& Key, const FSharedString& Name) = 0;
virtual void Disable() = 0;
};
} // UE::DerivedData