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