UDocumentation UE5.7 10.02.2026 (Source)
API documentation for Unreal Engine 5.7
CheckScope.h
Go to the documentation of this file.
1// Copyright Epic Games, Inc. All Rights Reserved.
2
3#pragma once
4#include "HAL/Platform.h"
5
7
10{
12
15 CORE_API explicit FCheckScope(const ANSICHAR* Msg);
17
18 CORE_API int GetCount();
19private:
21 bool bIgnoreDebugger;
22 bool bCriticalError;
23};
FPlatformTypes::ANSICHAR ANSICHAR
An ANSI character. Normally a signed type.
Definition Platform.h:1131
UE_FORCEINLINE_HINT TSharedRef< CastToType, Mode > StaticCastSharedRef(TSharedRef< CastFromType, Mode > const &InSharedRef)
Definition SharedPointer.h:127
Definition CheckScope.cpp:9
Scope that captures failed check calls.
Definition CheckScope.h:10
CORE_API ~FCheckScope()
Definition CheckScope.cpp:82
CORE_API FCheckScope()
Definition CheckScope.cpp:77
CORE_API int GetCount()
Definition CheckScope.cpp:93