18 lines
232 B
C++
18 lines
232 B
C++
// Copyright Epic Games, Inc. All Rights Reserved.
|
|
|
|
#pragma once
|
|
|
|
#include "CoreMinimal.h"
|
|
|
|
class IDerivedDataCacheNotifications
|
|
{
|
|
public:
|
|
IDerivedDataCacheNotifications()
|
|
{
|
|
}
|
|
|
|
virtual ~IDerivedDataCacheNotifications()
|
|
{
|
|
}
|
|
};
|