UDocumentation UE5.7 10.02.2026 (Source)
API documentation for Unreal Engine 5.7
Console.h
Go to the documentation of this file.
1// Copyright Epic Games, Inc. All Rights Reserved.
2#pragma once
3
4#include "Core/Types.h"
5
6#include "UI/Message.h"
7
8namespace UE::CADKernel
9{
11{
12public:
13
14 virtual ~FConsole()
15 {
16 }
17
18 virtual void Print(const TCHAR* Texte, EVerboseLevel VerboseLevel = EVerboseLevel::NoVerbose)
19 {}
20
21};
22
23} // namespace UE::CADKernel
24
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 Console.h:11
virtual void Print(const TCHAR *Texte, EVerboseLevel VerboseLevel=EVerboseLevel::NoVerbose)
Definition Console.h:18
virtual ~FConsole()
Definition Console.h:14
Definition CADEntity.cpp:23
EVerboseLevel
Definition Types.h:104