You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
#rb none #jira #ROBOMERGE-SOURCE: CL 5295902 in //UE4/Release-4.22/... #ROBOMERGE-BOT: RELEASE (Release-4.22 -> Main) [CL 5308945 by ben marsh in Main branch]
51 lines
1.2 KiB
C#
51 lines
1.2 KiB
C#
// Copyright 1998-2019 Epic Games, Inc. All Rights Reserved.
|
|
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace UnrealBuildTool
|
|
{
|
|
/// <summary>
|
|
/// Information about a PCH instance
|
|
/// </summary>
|
|
class PrecompiledHeaderInstance
|
|
{
|
|
/// <summary>
|
|
/// The file to include to use this shared PCH
|
|
/// </summary>
|
|
public FileItem HeaderFile;
|
|
|
|
/// <summary>
|
|
/// The compile environment for this shared PCH
|
|
/// </summary>
|
|
public CppCompileEnvironment CompileEnvironment;
|
|
|
|
/// <summary>
|
|
/// The output files for the shared PCH
|
|
/// </summary>
|
|
public CPPOutput Output;
|
|
|
|
/// <summary>
|
|
/// Constructor
|
|
/// </summary>
|
|
public PrecompiledHeaderInstance(FileItem HeaderFile, CppCompileEnvironment CompileEnvironment, CPPOutput Output)
|
|
{
|
|
this.HeaderFile = HeaderFile;
|
|
this.CompileEnvironment = CompileEnvironment;
|
|
this.Output = Output;
|
|
}
|
|
|
|
/// <summary>
|
|
/// Return a string representation of this object for debugging
|
|
/// </summary>
|
|
/// <returns>String representation of the object</returns>
|
|
public override string ToString()
|
|
{
|
|
return HeaderFile.Location.GetFileName();
|
|
}
|
|
}
|
|
}
|