UDocumentation UE5.7 10.02.2026 (Source)
API documentation for Unreal Engine 5.7
OutputDeviceConsole.h
Go to the documentation of this file.
1// Copyright Epic Games, Inc. All Rights Reserved.
2
3#pragma once
4
5#include "CoreTypes.h"
6#include "Misc/OutputDevice.h"
8
13 : public FOutputDevice
14{
15public:
16
22 virtual void Show( bool ShowWindow )=0;
23
29 virtual bool IsShown()=0;
30
36 virtual bool IsAttached()
37 {
38 return false;
39 }
40
50
51protected:
52
54 FString IniFilename;
55};
FPlatformTypes::TCHAR TCHAR
Either ANSICHAR or WIDECHAR, depending on whether the platform supports wide characters or the requir...
Definition Platform.h:1135
UE_FORCEINLINE_HINT TSharedRef< CastToType, Mode > StaticCastSharedRef(TSharedRef< CastFromType, Mode > const &InSharedRef)
Definition SharedPointer.h:127
Definition OutputDeviceConsole.h:14
virtual void Show(bool ShowWindow)=0
virtual bool IsShown()=0
FString IniFilename
Definition OutputDeviceConsole.h:54
virtual bool IsAttached()
Definition OutputDeviceConsole.h:36
void SetIniFilename(const TCHAR *InFilename)
Definition OutputDeviceConsole.h:46
Definition OutputDevice.h:133