You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
Source=CL 4772220 in //UE4/Main/... Acknowledger=joe.conley (Thu Jan 24 2019 00:26:59 GMT+0000 (Coordinated Universal Time)) ShelfCl=4791207 Target=Dev-VR Merge conflict: /src/ROBOMERGE_DEVVR_Dev_VR/Engine/Plugins/Lumin/MagicLeap/Source/MagicLeapController/Private/MagicLeapController.cpp - merging //UE4/Main/Engine/Plugins/Lumin/MagicLeap/Source/MagicLeapController/Private/MagicLeapController.cpp#5 #rb Ryan.Vance [CL 4792243 by Joe Conley in Dev-VR branch]
21 lines
955 B
C++
21 lines
955 B
C++
// Copyright 1998-2019 Epic Games, Inc. All Rights Reserved.
|
|
|
|
#include "ClassMaps.h"
|
|
#include "UnrealHeaderTool.h"
|
|
#include "UnrealTypeDefinitionInfo.h"
|
|
|
|
TMap<FString, TSharedRef<FUnrealSourceFile> > GUnrealSourceFilesMap;
|
|
TMap<UField*, TSharedRef<FUnrealTypeDefinitionInfo> > GTypeDefinitionInfoMap;
|
|
TMap<const UPackage*, TArray<UField*>> GPackageSingletons;
|
|
TMap<UClass*, FString> GClassStrippedHeaderTextMap;
|
|
TMap<UClass*, FString> GClassHeaderNameWithNoPathMap;
|
|
TSet<FUnrealSourceFile*> GPublicSourceFileSet;
|
|
TMap<UProperty*, FString> GArrayDimensions;
|
|
TMap<UPackage*, const FManifestModule*> GPackageToManifestModuleMap;
|
|
TMap<UField*, uint32> GGeneratedCodeHashes;
|
|
TMap<UEnum*, EUnderlyingEnumType> GEnumUnderlyingTypes;
|
|
TMap<FName, TSharedRef<FClassDeclarationMetaData> > GClassDeclarations;
|
|
TSet<UProperty*> GUnsizedProperties;
|
|
TSet<UField*> GEditorOnlyDataTypes;
|
|
TMap<UStruct*, TTuple<TSharedRef<FUnrealSourceFile>, int32>> GStructToSourceLine;
|