Files
UnrealEngineUWP/Engine/Source/Developer/DerivedDataCache/Public/DerivedDataUtilsInterface.h
Robert Manuszewski b6f514465a #ttp 331319: CRITICAL: LIVE: FRAMEWORK: GitHub editor attempts to connect to shared network DDC
#change Moved internal DDC shared paths to a no-redist module.

[CL 2039559 by Robert Manuszewski in Main branch]
2014-04-23 17:27:21 -04:00

14 lines
336 B
C++

// Copyright 1998-2014 Epic Games, Inc. All Rights Reserved.
#pragma once
/**
* Interface for DDC utility modules.
**/
class IDDCUtilsModuleInterface : public IModuleInterface
{
public:
/**
* Returns the path to the shared cache location given its name.
**/
virtual FString GetSharedCachePath(const FString& CacheName) = 0;
};