📄 foutputdevicestdout.h
字号:
/*=============================================================================
FOutputDeviceStdout.h: ANSI stdout output device.
Copyright 1997-1999 Epic Games, Inc. All Rights Reserved.
Revision history:
* Created by Tim Sweeney
=============================================================================*/
//
// ANSI stdout output device.
//
class FOutputDeviceStdout : public FOutputDevice
{
public:
void Serialize( const TCHAR* V, EName Event )
{
printf( "%s\n", V );
}
};
/*-----------------------------------------------------------------------------
The End.
-----------------------------------------------------------------------------*/
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -