Files
UnrealEngineUWP/Engine/Source/Programs/UnrealHeaderTool/Private/Specifiers/FunctionSpecifiers.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 EFunctionSpecifier
{
None = -1
#define FUNCTION_SPECIFIER(SpecifierName) , SpecifierName
#include "FunctionSpecifiers.def"
#undef FUNCTION_SPECIFIER
, Max
};
extern const TCHAR* GFunctionSpecifierStrings[(int32)EFunctionSpecifier::Max];