Files
UnrealEngineUWP/Engine/Source/Programs/UnrealHeaderTool/Private/Specifiers/VariableSpecifiers.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
333 B
C

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