Files
UnrealEngineUWP/Engine/Source/Programs/UnrealHeaderTool/Private/Specifiers/StructSpecifiers.h
Steve Robb 0709480948 New IsSorted algorithm.
New FindSortedStringCaseInsensitive algorithm, which binary searches strings in an array.
Many UHT string tests replaced with FindSortedStringCaseInsensitive.
FPropertySpecifier moved to UHT.

#codereview robert.manuszewski

[CL 2587588 by Steve Robb in Main branch]
2015-06-15 13:40:28 -04:00

17 lines
321 B
C

// Copyright 1998-2015 Epic Games, Inc. All Rights Reserved.
#pragma once
enum class EStructSpecifier
{
None = -1
#define STRUCT_SPECIFIER(SpecifierName) , SpecifierName
#include "StructSpecifiers.def"
#undef STRUCT_SPECIFIER
, Max
};
extern const TCHAR* GStructSpecifierStrings[(int32)EStructSpecifier::Max];