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

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