11#ifndef UE_ALLOW_EXEC_COMMANDS
12 #if UE_BUILD_SHIPPING && !WITH_EDITOR
13 #define UE_ALLOW_EXEC_COMMANDS UE_ALLOW_EXEC_COMMANDS_IN_SHIPPING
15 #define UE_ALLOW_EXEC_COMMANDS 1
19#ifndef UE_ALLOW_EXEC_DEV
20 #define UE_ALLOW_EXEC_DEV !UE_BUILD_SHIPPING && UE_ALLOW_EXEC_COMMANDS
23#ifndef UE_ALLOW_EXEC_EDITOR
24 #define UE_ALLOW_EXEC_EDITOR WITH_EDITOR && UE_ALLOW_EXEC_COMMANDS
33#if UE_ALLOW_EXEC_COMMANDS
UE_FORCEINLINE_HINT TSharedRef< CastToType, Mode > StaticCastSharedRef(TSharedRef< CastFromType, Mode > const &InSharedRef)
Definition SharedPointer.h:127
virtual bool Exec_Runtime(UWorld *InWorld, const TCHAR *Cmd, FOutputDevice &Ar)
Definition Exec.h:61
virtual CORE_API ~FExec()
Definition Exec.cpp:8
virtual bool Exec_Dev(UWorld *InWorld, const TCHAR *Cmd, FOutputDevice &Ar)
Definition Exec.h:64
virtual CORE_API bool Exec(UWorld *InWorld, const TCHAR *Cmd, FOutputDevice &Ar)
Definition Exec.cpp:30
virtual bool Exec_Editor(UWorld *InWorld, const TCHAR *Cmd, FOutputDevice &Ar)
Definition Exec.h:67
Definition OutputDevice.h:133